Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
86ca6e3b
Commit
86ca6e3b
authored
19 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0c03
parent
d2cec5b0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
runtime/keymap/accents.vim
+8
-1
8 additions, 1 deletion
runtime/keymap/accents.vim
src/normal.c
+10
-0
10 additions, 0 deletions
src/normal.c
src/spell.c
+1
-1
1 addition, 1 deletion
src/spell.c
with
19 additions
and
2 deletions
runtime/keymap/accents.vim
+
8
−
1
View file @
86ca6e3b
" Vim Keymap file for latin1 accents through dead characters
" Maintainer: Bram Moolenaar
" Last Change: 200
1 Jul
2
2
" Last Change: 200
6 Mar
2
9
" All characters are given literally, conversion to another encoding (e.g.,
" UTF-8) should work.
...
...
@@ -15,6 +15,7 @@ loadkeymap
A
^A
~
A
:
A
'C
C
`E
...
...
@@ -31,10 +32,12 @@ loadkeymap
O
^O
~
O
:
O
`U
'U
U
^U
:
U
'Y
Y
`
a
...
...
@@ -42,6 +45,7 @@ loadkeymap
a
^
a
~
a
:
a
'
c
c
`
e
...
...
@@ -58,10 +62,12 @@ loadkeymap
o
^
o
~
o
:
o
`
u
'
u
u
^
u
:
u
'
y
y
''
'
...
...
@@ -69,3 +75,4 @@ loadkeymap
`` `
^^ ^
~~
~
::
:
This diff is collapsed.
Click to expand it.
src/normal.c
+
10
−
0
View file @
86ca6e3b
...
...
@@ -8993,7 +8993,17 @@ nv_put(cap)
/* When all lines were selected and deleted do_put() leaves an empty
* line that needs to be deleted now. */
if
(
empty
&&
*
ml_get
(
curbuf
->
b_ml
.
ml_line_count
)
==
NUL
)
{
ml_delete
(
curbuf
->
b_ml
.
ml_line_count
,
TRUE
);
/* If the cursor was in that line, move it to the end of the last
* line. */
if
(
curwin
->
w_cursor
.
lnum
>
curbuf
->
b_ml
.
ml_line_count
)
{
curwin
->
w_cursor
.
lnum
=
curbuf
->
b_ml
.
ml_line_count
;
coladvance
((
colnr_T
)
MAXCOL
);
}
}
#endif
auto_format
(
FALSE
,
TRUE
);
}
...
...
This diff is collapsed.
Click to expand it.
src/spell.c
+
1
−
1
View file @
86ca6e3b
...
...
@@ -2039,7 +2039,7 @@ spell_move_to(wp, dir, allwords, curline, attrp)
/*
* Start looking for bad word at the start of the line, because we can't
* start halfway a word, we don't know where
the
it starts or ends.
* start halfway a word, we don't know where it starts or ends.
*
* When searching backwards, we continue in the line to find the last
* bad word (in the cursor line: before the cursor).
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment