mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 13:38:34 +00:00
refactor: remove long
long is 32-bits even on 64-bit windows which makes the type suboptimal for a codebase meant to be cross-platform.
This commit is contained in:
@@ -3182,7 +3182,7 @@ void do_put(int regname, yankreg_T *reg, int dir, long count, int flags)
|
||||
if (cur_ve_flags == VE_ALL && y_type == kMTCharWise) {
|
||||
if (gchar_cursor() == TAB) {
|
||||
int viscol = getviscol();
|
||||
long ts = curbuf->b_p_ts;
|
||||
OptInt ts = curbuf->b_p_ts;
|
||||
// Don't need to insert spaces when "p" on the last position of a
|
||||
// tab or "P" on the first position.
|
||||
if (dir == FORWARD
|
||||
|
Reference in New Issue
Block a user