-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Big refactor of modes to not use OOP, fix issue with command line getting cleared #4291
Conversation
Travis tests have failedHey @J-Fields, Node.js: 8if [[ $(git diff-index HEAD -- *.js *.ts *.md) ]]; then git diff; echo "Prettier Failed. Run `gulp forceprettier` and commit changes to resolve."; exit 1; fi
npm test
TravisBuddy Request Identifier: cde4a120-0c93-11ea-9489-798921b627f8 |
2b88b32
to
7001500
Compare
Travis tests have failedHey @J-Fields, Node.js: 8if [[ $(git diff-index HEAD -- *.js *.ts *.md) ]]; then git diff; echo "Prettier Failed. Run `gulp forceprettier` and commit changes to resolve."; exit 1; fi
npm test
TravisBuddy Request Identifier: aefdee80-12d6-11ea-b2b3-cdec09be7ce8 |
7001500
to
75644f1
Compare
This is a step toward fixing our janky status bar logic. Basically, I want to make information about the current mode easily available from a VimState without needing the ModeHandler. The Mode class has been destroyed, replaced by some functions that take a ModeName. More refactoring could be done, I'm sure, but I think this is a BIG step in the right directions.
75644f1
to
64808f8
Compare
Travis tests have failedHey @J-Fields, Node.js: 8if [[ $(git diff-index HEAD -- *.js *.ts *.md) ]]; then git diff; echo "Prettier Failed. Run `gulp forceprettier` and commit changes to resolve."; exit 1; fi
npm test
TravisBuddy Request Identifier: eb5d61a0-1392-11ea-9fec-2bc1e44a98db |
…ilable StatusBar.Clear() Actions such as `dd` which would totally clear the status bar before now correctly reset it to show the mode, macro being recorded, etc. Fixes #3838
64808f8
to
38e504b
Compare
This is a step toward fixing our janky status bar logic. Basically, I want to make information about the current mode easily available from a VimState without needing the ModeHandler.
The Mode class has been destroyed, replaced by some functions that take a ModeName (now renamed Mode, sorry for the confusion).
A Mode is held by VimState and operated on by ModeHandler as needed.
More refactoring could be done, I'm sure, but I think this is a BIG step in the right directions.