question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Temporarily enter command mode from insert mode with ctrl+o

See original GitHub issue

As I gather, this plugin „unbinds self from the type event“. Which I like in general… except: What would it take to allow ctrl+o to temporarily enter command mode from insert mode? It seems to work in principle with other mappings such as ctrl+r.

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:8 (3 by maintainers)

github_iconTop GitHub Comments

6reactions
trkochcommented, Feb 12, 2020

For now, I added this to my keybindings.json. Seems to work so far.

{
    "key": "ctrl+o",
    "command": "vscode-neovim.send",
    "args": "<c-o>",
    "when": "editorTextFocus && neovim.mode == insert"
}

Great stuff! 👍

0reactions
trkochcommented, Apr 20, 2021

@QAston 😎 I’ll give it a try. Hope @asvetliakov finds time to review.

Read more comments on GitHub >

github_iconTop Results From Across the Web

In Vim, why is temporary Normal Mode (Ctrl-O from Insert ...
Escape into temporary Normal mode for one command, using Ctrl-O; Press u to undo changes; I am automatically in Insert mode and continue...
Read more >
Quick command in insert mode - Vim Tips Wiki - Fandom
Quick command in insert mode ... You can use CTRL-O or CTRL-\ CTRL-O (see :help ins-special-special) to execute a normal-mode command without leaving...
Read more >
Other ways to exit Insert mode besides Escape
If you've vim in easy mode ( -y ), then you've to press Ctrl - l (Control-L) to exit insert mode. There is...
Read more >
insert - Vim documentation
CTRL -X Enter CTRL-X mode. This is a sub-mode where commands can be given to complete words or scroll the window. See |i_CTRL-X|...
Read more >
Insert mode - Vim Reference Guide - learnbyexample
Insert mode. This is the mode where the required text is typed. There are also commands available for moving around, deleting, autocompletion, etc....
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found