diff options
author | ZyX <kp-pav@yandex.ru> | 2017-04-08 19:11:42 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-04-08 19:20:42 +0300 |
commit | ab19fa155203a4071cb8e780db7d3480b562aee0 (patch) | |
tree | 67fb71fe4a3c7c6f6c5603d4e63c065257c23de7 /src/nvim/move.h | |
parent | dc9722326e797453094b5d82decb5369b1086139 (diff) | |
download | rneovim-ab19fa155203a4071cb8e780db7d3480b562aee0.tar.gz rneovim-ab19fa155203a4071cb8e780db7d3480b562aee0.tar.bz2 rneovim-ab19fa155203a4071cb8e780db7d3480b562aee0.zip |
*: Fix linter errors
Drops comments `// for …` that do not pass linter for them being unmaintainable
and fast to becoming incomplete or even incorrect.
Mention @dedmass
Diffstat (limited to 'src/nvim/move.h')
-rw-r--r-- | src/nvim/move.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/move.h b/src/nvim/move.h index 1cdf1f6f52..00fbcc580f 100644 --- a/src/nvim/move.h +++ b/src/nvim/move.h @@ -2,8 +2,8 @@ #define NVIM_MOVE_H #include <stdbool.h> -#include "nvim/buffer_defs.h" // for win_T -#include "nvim/pos.h" // for linenr_T +#include "nvim/buffer_defs.h" +#include "nvim/pos.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "move.h.generated.h" |