diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-21 08:20:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 08:20:20 +0200 |
commit | ad6bbe44683cf936ec2268ee89e8e1c22f538ecc (patch) | |
tree | e639cb06834f05b90d513dd8f67a3a7191082543 /src/nvim/window.c | |
parent | e55ebae3734068239c7070dd20ddc34b06c20a7c (diff) | |
parent | 01b2fa53f4593024437f5df25b7744b16b164e4f (diff) | |
download | rneovim-ad6bbe44683cf936ec2268ee89e8e1c22f538ecc.tar.gz rneovim-ad6bbe44683cf936ec2268ee89e8e1c22f538ecc.tar.bz2 rneovim-ad6bbe44683cf936ec2268ee89e8e1c22f538ecc.zip |
Merge #9022 from janlazo/vim-8.0.1215
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index 6f382acd84..e541e4bb68 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -367,7 +367,7 @@ newwindow: g_do_tagpreview = Prenum; else g_do_tagpreview = p_pvh; - /*FALLTHROUGH*/ + FALLTHROUGH; case ']': case Ctrl_RSB: CHECK_CMDWIN @@ -420,8 +420,8 @@ wingotofile: case 'i': /* Go to any match */ case Ctrl_I: type = FIND_ANY; - /* FALLTHROUGH */ - case 'd': /* Go to definition, using 'define' */ + FALLTHROUGH; + case 'd': // Go to definition, using 'define' case Ctrl_D: CHECK_CMDWIN if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0) @@ -465,7 +465,7 @@ wingotofile: g_do_tagpreview = Prenum; else g_do_tagpreview = p_pvh; - /*FALLTHROUGH*/ + FALLTHROUGH; case ']': case Ctrl_RSB: // Keep visual mode, can select words to use as a tag. |