-
Notifications
You must be signed in to change notification settings - Fork 596
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
Shift-O on last line doesn't appear to work #675
Comments
I got same thing. |
I have submitted a PR to the develop branch to fix this issue. Please check out the mentioned branch and confirm that it is fixed! |
pebble8888
pushed a commit
to pebble8888/XVim
that referenced
this issue
Jan 2, 2015
This fixes an issue where, when the start of the line is the last character of the file, there an off by 1 error that would cause shift-o not to work. `characterAtIndex` expects and index within the bounds of this string, the passed character index was previously the length of the string. This fixes XVimProject#675
pebble8888
pushed a commit
to pebble8888/XVim
that referenced
this issue
Jan 23, 2015
This fixes an issue where, when the start of the line is the last character of the file, there an off by 1 error that would cause shift-o not to work. `characterAtIndex` expects and index within the bounds of this string, the passed character index was previously the length of the string. This fixes XVimProject#675
JugglerShu
pushed a commit
that referenced
this issue
Feb 10, 2015
This fixes an issue where, when the start of the line is the last character of the file, there an off by 1 error that would cause shift-o not to work. `characterAtIndex` expects and index within the bounds of this string, the passed character index was previously the length of the string. This fixes #675
hyperspacemark
pushed a commit
to hyperspacemark/XVim
that referenced
this issue
Feb 25, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Shift-O, creating a new line above the current line and enter insert mode, doesn't seem to have any effect when the cursor is on the last line of a file.
The text was updated successfully, but these errors were encountered: