diff options
author | bambu <bambu@revengsec.com> | 2015-10-12 20:27:17 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-04-25 01:31:44 -0400 |
commit | 5a5ef1c2227f1cb1c599cc8224a48c3e831aca9b (patch) | |
tree | 0f1a57e5fcd7d132d4f4606f317647f8dcc2e79f /src/nvim/edit.h | |
parent | dfe85dd80afe1026608faa222c23f1f84ef01135 (diff) | |
download | rneovim-5a5ef1c2227f1cb1c599cc8224a48c3e831aca9b.tar.gz rneovim-5a5ef1c2227f1cb1c599cc8224a48c3e831aca9b.tar.bz2 rneovim-5a5ef1c2227f1cb1c599cc8224a48c3e831aca9b.zip |
mouse: Implement horizontal scroll. #3450
- Code from Vim source.
- Removed the check for 'guioptions'
- mouse_spec.lua: test <ScrollWheelLeft> and <ScrollWheelRight>
- Move horizontal scroll logic to mouse.c
- Remove 'gui_' from the function names
- Renamed variables to be more specific (as opposed to generic p, w).
- Marked some functions as `static`
Diffstat (limited to 'src/nvim/edit.h')
-rw-r--r-- | src/nvim/edit.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/edit.h b/src/nvim/edit.h index 0289b2c3a6..0d61f26bcc 100644 --- a/src/nvim/edit.h +++ b/src/nvim/edit.h @@ -36,12 +36,6 @@ typedef int (*IndentGetter)(void); #define INSCHAR_NO_FEX 8 /* don't use 'formatexpr' */ #define INSCHAR_COM_LIST 16 /* format comments with list/2nd line indent */ -/* direction for nv_mousescroll() and ins_mousescroll() */ -#define MSCR_DOWN 0 /* DOWN must be FALSE */ -#define MSCR_UP 1 -#define MSCR_LEFT -1 -#define MSCR_RIGHT -2 - #ifdef INCLUDE_GENERATED_DECLARATIONS # include "edit.h.generated.h" #endif |