You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's the tab/indentation/spacing section of my .vimrc:
se smartindent
se sw=2
se ts=2
se expandtab
With those settings, many cucumber scenarios fail. I've played around with no/other settings and can't get them to all pass, so we need either the recommended settings and/or enhancements to support a wider range of settings.
The text was updated successfully, but these errors were encountered:
After some more playing, here's the .vimrc settings that got all the scenarios to pass:
set sw=2
set ts=2
set expandtab
set nocompatible " We're running Vim, not Vi!
syntax on " Enable syntax highlighting
filetype on " Enable filetype detection
filetype indent on " Enable filetype-specific indenting
filetype plugin on " Enable filetype-specific plugins
Here's the tab/indentation/spacing section of my .vimrc:
se smartindent
se sw=2
se ts=2
se expandtab
With those settings, many cucumber scenarios fail. I've played around with no/other settings and can't get them to all pass, so we need either the recommended settings and/or enhancements to support a wider range of settings.
The text was updated successfully, but these errors were encountered: