diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-31 17:44:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-31 17:44:13 +0200 |
commit | 7380ebfc17723662f6fe1e38372f54b3d67fe082 (patch) | |
tree | e079f85a72f851e5c0a8e08f52db0cb4a8b26163 /src/nvim/vim.h | |
parent | 5d840fa7e6ba7d58a89d3126ee914cb0e42168ca (diff) | |
parent | 46536f53e82967dcac8d030ee3394cdb156f9603 (diff) | |
download | rneovim-7380ebfc17723662f6fe1e38372f54b3d67fe082.tar.gz rneovim-7380ebfc17723662f6fe1e38372f54b3d67fe082.tar.bz2 rneovim-7380ebfc17723662f6fe1e38372f54b3d67fe082.zip |
Merge pull request #18194 from famiu/feat/usercmd_preview
feat: user command "preview" (like inccommand)
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r-- | src/nvim/vim.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h index 7e82af2d93..31ac5a67ff 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -70,7 +70,6 @@ enum { NUMBUFLEN = 65, }; #define MODE_EXTERNCMD 0x5000 // executing an external command #define MODE_SHOWMATCH (0x6000 | MODE_INSERT) // show matching paren #define MODE_CONFIRM 0x7000 // ":confirm" prompt -#define MODE_CMDPREVIEW 0x8000 // Showing 'inccommand' command "live" preview. /// Directions. typedef enum { |