Gerard Roche
Gerard Roche
This is a very old issue, has it been fixed?
This is a NeoVintageous issue, explained here: https://github.com/NeoVintageous/NeoVintageous/issues/357. That said, LatextTools could apply a workaround, by checking if command_mode is true and the cursor is on the last character of...
No, it won't be the character in the next line, it will be the point *before* the eol character `\n`. When in command mode the cursor is an inverted caret:...
A quick workaround may be for you to disable `vintageous_reset_mode_when_switching_tabs`: Open your settings **Menu > Preferences > Settings** and set: "vintageous_reset_mode_when_switching_tabs": false, That will prevent nv from resetting to normal...
To fix the insertion point when the cursor is at the eol: ``` insertion_pt = sel.end() if view.settings().get('command_mode') and view.substr(insertion_pt + 1) == "\n": insertion_pt += 1 view.insert(edit, insertion_pt, value)...
@iamntz I didn't know you do this, thanks :)
The command `ga` should get you what you need. ``` ga Print the ascii value of the character under the cursor in decimal, hexadecimal and octal. Mnemonic: Get Ascii value....
No, I think that would need a `:statusline` feature
I wasn't able to reproduce this issue. Can you give me some details on what input method you're using and language?
Yeah, I don't think it's the keyboard layout. I just need a way to reproduce it so I can figure out what needs to be done to resolve it, if...