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
9e1d2839
Commit
9e1d2839
authored
17 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.1a
parent
a9af0e6a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
runtime/doc/usr_41.txt
+15
-3
15 additions, 3 deletions
runtime/doc/usr_41.txt
src/feature.h
+0
-1
0 additions, 1 deletion
src/feature.h
src/os_unix.c
+5
-3
5 additions, 3 deletions
src/os_unix.c
src/tag.c
+2
-0
2 additions, 0 deletions
src/tag.c
with
22 additions
and
7 deletions
runtime/doc/usr_41.txt
+
15
−
3
View file @
9e1d2839
*usr_41.txt* For Vim version 7.
0
. Last change: 2007 Apr 26
*usr_41.txt* For Vim version 7.
1a
. Last change: 2007 Apr 26
VIM USER MANUAL - by Bram Moolenaar
...
...
@@ -1482,7 +1482,9 @@ commands (there are a few more commands with this restriction). For the
:execute cmd |" do it
With the '|' character the command is separated from the next one. And that
next command is only a comment.
next command is only a comment. For the last command you need to do two
things: |:execute| and use '|': >
:exe '!ls *.c' |" list C files
Notice that there is no white space before the '|' in the abbreviation and
mapping. For these commands, any character until the end-of-line or '|' is
...
...
@@ -1491,9 +1493,19 @@ trailing whitespace is included: >
:map <F4> o#include
To
avoid
these problems, you can set the 'list' option when editing vimrc
To
spot
these problems, you can set the 'list' option when editing vimrc
files.
For Unix there is one special way to comment a line, that allows making a Vim
script executable: >
#!/usr/bin/env vim -S
echo "this is a Vim script"
quit
The "#" command by itself lists a line with the line number. Adding an
exclamation mark changes it into doing nothing, so that you can add the shell
command to execute the rest of the file. |:#!| |-S|
PITFALLS
...
...
This diff is collapsed.
Click to expand it.
src/feature.h
+
0
−
1
View file @
9e1d2839
...
...
@@ -1257,4 +1257,3 @@
|| defined(FEAT_BIG)
# define FEAT_AUTOCHDIR
#endif
This diff is collapsed.
Click to expand it.
src/os_unix.c
+
5
−
3
View file @
9e1d2839
...
...
@@ -1256,9 +1256,11 @@ catch_signals(func_deadly, func_other)
/*
* Handling of SIGHUP, SIGQUIT and SIGTERM:
* "when" == a signal: when busy, postpone, otherwise return TRUE
* "when" == SIGNAL_BLOCK: Going to be busy, block signals
* "when" == SIGNAL_UNBLOCK: Going wait, unblock signals
* "when" == a signal: when busy, postpone and return FALSE, otherwise
* return TRUE
* "when" == SIGNAL_BLOCK: Going to be busy, block signals
* "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
* signal
* Returns TRUE when Vim should exit.
*/
int
...
...
This diff is collapsed.
Click to expand it.
src/tag.c
+
2
−
0
View file @
9e1d2839
...
...
@@ -1625,6 +1625,8 @@ find_tags(pat, num_matches, matchesp, flags, mincount, buf_ffname)
eof
=
tag_fgets
(
lbuf
,
LSIZE
,
fp
);
if
(
!
eof
&&
search_info
.
curr_offset
!=
0
)
{
/* The explicit cast is to work around a bug in gcc 3.4.2
* (repeated below). */
search_info
.
curr_offset
=
ftell
(
fp
);
if
(
search_info
.
curr_offset
==
search_info
.
high_offset
)
{
...
...
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