diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2020-09-29 06:40:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 06:40:10 +0200 |
commit | 090551a802489d88be221f5893f49f2188037223 (patch) | |
tree | 4b35ffca02a329fa9de7d60622dd2d6a0fd94bce /src/nvim/ops.c | |
parent | 6f2138eb03766680b012ee0bdfca04fdc2c22e89 (diff) | |
parent | 12fdb114d1fdc85a26cf60e9af91b243cc59cfa0 (diff) | |
download | rneovim-090551a802489d88be221f5893f49f2188037223.tar.gz rneovim-090551a802489d88be221f5893f49f2188037223.tar.bz2 rneovim-090551a802489d88be221f5893f49f2188037223.zip |
Merge pull request #12996 from teto/foldcol
folds: pass column on fold creation
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 6209dd6492..d1f2e9e4f1 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -119,7 +119,7 @@ static char opchars[][3] = { 'r', NUL, OPF_CHANGE }, // OP_REPLACE { 'I', NUL, OPF_CHANGE }, // OP_INSERT { 'A', NUL, OPF_CHANGE }, // OP_APPEND - { 'z', 'f', OPF_LINES }, // OP_FOLD + { 'z', 'f', 0 }, // OP_FOLD { 'z', 'o', OPF_LINES }, // OP_FOLDOPEN { 'z', 'O', OPF_LINES }, // OP_FOLDOPENREC { 'z', 'c', OPF_LINES }, // OP_FOLDCLOSE |