aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hoffmann <stefan991@gmail.com>2014-10-05 19:22:44 +0200
committerStefan Hoffmann <stefan991@gmail.com>2014-10-06 22:43:30 +0200
commit83152918e12dd82ef2bbb7b7bc646250fdc1ac69 (patch)
treed29a8866cfea6c1425524e2aa48caacaad8618ca
parent0c8aae645da301d5c347dd1ec24fb7f015a566d7 (diff)
downloadrneovim-83152918e12dd82ef2bbb7b7bc646250fdc1ac69.tar.gz
rneovim-83152918e12dd82ef2bbb7b7bc646250fdc1ac69.tar.bz2
rneovim-83152918e12dd82ef2bbb7b7bc646250fdc1ac69.zip
doc: remove if_sniff.txt
-rw-r--r--runtime/doc/Makefile2
-rw-r--r--runtime/doc/if_sniff.txt95
-rw-r--r--runtime/doc/index.txt1
-rw-r--r--runtime/doc/usr_29.txt3
-rw-r--r--runtime/doc/various.txt1
5 files changed, 0 insertions, 102 deletions
diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile
index 0037cd751c..16b9245f79 100644
--- a/runtime/doc/Makefile
+++ b/runtime/doc/Makefile
@@ -40,7 +40,6 @@ DOCS = \
if_perl.txt \
if_pyth.txt \
if_ruby.txt \
- if_sniff.txt \
if_tcl.txt \
indent.txt \
index.txt \
@@ -162,7 +161,6 @@ HTMLS = \
if_perl.html \
if_pyth.html \
if_ruby.html \
- if_sniff.html \
if_tcl.html \
indent.html \
index.html \
diff --git a/runtime/doc/if_sniff.txt b/runtime/doc/if_sniff.txt
deleted file mode 100644
index a3d52085f2..0000000000
--- a/runtime/doc/if_sniff.txt
+++ /dev/null
@@ -1,95 +0,0 @@
-*if_sniff.txt* For Vim version 7.4. Last change: 2005 Mar 29
-
-
- VIM REFERENCE MANUAL
- by Anton Leherbauer (toni@takefive.co.at)
-
-
-SNiFF+ and Vim *sniff*
-
-1. Introduction |sniff-intro|
-2. Commands |sniff-commands|
-3. Compiling Vim with SNiFF+ interface |sniff-compiling|
-
-{Vi does not have any of these commands} *E275* *E274* *E276* *E278* *E279*
-
-The SNiFF+ interface only works, when Vim was compiled with the |+sniff|
-feature.
-
-==============================================================================
-1. Introduction *sniff-intro*
-
-The following features for the use with SNiFF+ are available:
-
- * Vim can be used for all editing requests
- * SNiFF+ recognizes and updates all browsers when a file is saved in Vim
- * SNiFF+ commands can be issued directly from Vim
-
-How to use Vim with SNiFF+
- 1. Make sure SNiFF+ is running.
- 2. In the Editor view of the Preferences dialog set the Field named
- 'External Editor' to 'Emacs/Vim'.
- 4. Start Vim
- 5. Connect to SNiFF+ (:sniff connect)
-
-Once a connection is established, SNiFF+ uses Vim for all requests to show or
-edit source code. On the other hand, you can send queries to SNiFF+ with the
-:sniff command.
-
-==============================================================================
-2. Commands *sniff-commands*
-
- *:sniff* *:sni*
-:sni[ff] request [symbol] Send request to sniff with optional symbol.
- {not in Vi}
-:sni[ff] Display all possible requests and the connection
- status
-
-Most requests require a symbol (identifier) as parameter. If it is omitted,
-Vim will use the current word under the cursor.
-The available requests are listed below:
-
-request mapping description
--------------------------------------------------------------------------------
-connect sc Establish connection with SNiFF+.
- Make sure SNiFF+ is prepared for this in the
- Preferences
-disconnect sq Disconnect from SNiFF+. You can reconnect any
- time with :sniff connect (or 'sc')
-toggle st Toggle between implementation
- and definition file
-find-symbol sf Load the symbol into a Symbol Browser
-browse-class sb Loads the class into a Class Browser
-superclass ss Edit superclass of symbol
-overridden so Edit overridden method of symbol
-retrieve-file srf Retrieve symbol in current file
-retrieve-project srp Retrieve symbol in current project
-retrieve-all-projects srP Retrieve symbol in all projects
-retrieve-next sR Retrieve symbol using current Retriever
- settings
-goto-symbol sg Goto definition or implementation of symbol
-hierarchy sh Load symbol into the Hierarchy Browser
-restr-hier sH same as above but show only related classes
-xref-to sxt Start a refers-to query on symbol and
- load the results into the Cross Referencer
-xref-by sxb Start a referred-by query on symbol
-xref-has sxh Start a refers-to components query on symbol
-xref-used-by sxu Start a referred-by as component query on
- symbol
-show-docu sd Show documentation of symbol
-gen-docu sD Generate documentation of symbol
-
-The mappings are defined in a file 'sniff.vim', which is part of every SNiFF+
-product ($SNIFF_DIR/config/sniff.vim). This file is sourced whenever Vim
-connects to SNiFF+.
-
-==============================================================================
-3. Compiling Vim with SNiFF+ interface *sniff-compiling*
-
-To compile Vim with SNiFF+ support, you need two source files of the extra
-archive: if_sniff.c and if_sniff.h.
-On Unix: Edit the Makefile and uncomment the line "--enable-sniff". Or run
-configure manually with this argument.
-On NT: Specify SNIFF=yes with your make command.
-
- vim:tw=78:ts=8:ft=help:norl:
diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt
index a9e884777e..b6bc6f0c15 100644
--- a/runtime/doc/index.txt
+++ b/runtime/doc/index.txt
@@ -1486,7 +1486,6 @@ tag command action ~
|:smenu| :sme[nu] add menu for Select mode
|:snext| :sn[ext] split window and go to next file in the
argument list
-|:sniff| :sni[ff] send request to sniff
|:snomagic| :sno[magic] :substitute with 'nomagic'
|:snoremap| :snor[emap] like ":noremap" but for Select mode
|:snoremenu| :snoreme[nu] like ":noremenu" but for Select mode
diff --git a/runtime/doc/usr_29.txt b/runtime/doc/usr_29.txt
index f13cd3a409..be56d290dc 100644
--- a/runtime/doc/usr_29.txt
+++ b/runtime/doc/usr_29.txt
@@ -264,9 +264,6 @@ doesn't work if the tags file isn't sorted.
The 'taglength' option can be used to tell Vim the number of significant
characters in a tag.
-When you use the SNiFF+ program, you can use the Vim interface to it |sniff|.
-SNiFF+ is a commercial program.
-
Cscope is a free program. It does not only find places where an identifier is
declared, but also where it is used. See |cscope|.
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt
index cf234a6beb..1a1a3e0b1f 100644
--- a/runtime/doc/various.txt
+++ b/runtime/doc/various.txt
@@ -409,7 +409,6 @@ m *+ruby/dyn* Ruby interface |ruby-dynamic| |/dyn|
N *+scrollbind* |'scrollbind'|
B *+signs* |:sign|
N *+smartindent* |'smartindent'|
-m *+sniff* SniFF interface |sniff|
N *+startuptime* |--startuptime| argument
N *+statusline* Options 'statusline', 'rulerformat' and special
formats of 'titlestring' and 'iconstring'