aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Jackson <sethjackson@gmail.com>2016-01-17 16:21:39 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-01-16 01:01:54 -0500
commitba3123c88f0399e322e5a394e47cd2a6f46b2571 (patch)
treede324e5c07383f7204952b6ea26a4fb1bac85e5b
parent704882e8dc9021f817c368022225e048f03dd91b (diff)
downloadrneovim-ba3123c88f0399e322e5a394e47cd2a6f46b2571.tar.gz
rneovim-ba3123c88f0399e322e5a394e47cd2a6f46b2571.tar.bz2
rneovim-ba3123c88f0399e322e5a394e47cd2a6f46b2571.zip
doc: cleanup. #4032 #4033
-rw-r--r--runtime/doc/quickref.txt2
-rw-r--r--runtime/doc/repeat.txt4
2 files changed, 0 insertions, 6 deletions
diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt
index 14aa3ef603..ded5e69438 100644
--- a/runtime/doc/quickref.txt
+++ b/runtime/doc/quickref.txt
@@ -983,8 +983,6 @@ Short explanation of each option: *option-list*
|dos-CTRL-Break| CTRL-Break Windows: during searches: Interrupt the search
|<Del>| <Del> while entering a count: delete last character
|:version| :ve[rsion] show version information
-|:mode| :mode N Windows: set screen mode to N (number, C80,
- C4350, etc.)
|:normal| :norm[al][!] {commands}
execute Normal mode commands
|Q| Q switch to "Ex" mode
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index 05a49d9658..59dbbf3067 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -658,10 +658,6 @@ long you take to respond to the input() prompt is irrelevant.
Profiling should give a good indication of where time is spent, but keep in
mind there are various things that may clobber the results:
-- The accuracy of the time measured depends on the gettimeofday() system
- function. It may only be as accurate as 1/100 second, even though the times
- are displayed in micro seconds.
-
- Real elapsed time is measured, if other processes are busy they may cause
delays at unpredictable moments. You may want to run the profiling several
times and use the lowest results.