ex-mode icon indicating copy to clipboard operation
ex-mode copied to clipboard

Ex mode for Atom

Results 66 ex-mode issues
Sort by recently updated
recently updated
newest added

When pressing `:e` Atom freezes for a moment and then shows the file as plain text.

Watch out, there's some "file visited" state: ``` $ vim foo bar :q # :q # $ vim foo bar :qa # ```

enhancement

Shouldn't update mtime when no changes were made, whereas `:w` always writes (so, touches the file). For reference: ``` :[range]x[it][!] [++opt] [file] Like ":wq", but write only when changes have...

enhancement

1. Closed a buffer which had been open for a while with `:q` There were multiple panes open at the time and this pane had two tabs open. **Atom Version**:...

bug

Originally reported on atom/vim-mode#716, opening here on their request. Suppose you are on ``` 77: hello world 78: hello world ``` Select line 77 with `shift +v` Use ex mode...

bug

When the command palette or grammar selector dropdowns are started from an ex-mode command, they don't get keyboard focus and anything typed will go into the document behind the dropdown....

bug

commands such as: :10,50y a :10,15c 42 :5,30m 80 do not work. and give `Command error: Not an editor command: 10,50y a`

enhancement

Currently it's not possible to toggle ex-mode panel if Atom has no active editors (empty workspace) ``` 'atom-workspace:not(.editor)': ':': 'ex-mode:open' ``` while the following keymap works fine ``` 'atom-workspace:not(.editor)': ':':...

enhancement

We should have a standard format for declaring commands, instead of throwing everything in `lib/ex.coffee`. First draft: ``` coffee 'edit': trigger: ['edit', 'e'] callback: BufferCommands.edit # we could group similar...

enhancement