src/*: Remove VIM - Vi improved ... header

Regarding the individual items in the header:

`Vim - Vi improved	by Bram Moolenar`
  Bram Moolenar is already mentioned throughout the documentation, as
  well as the intro screen.

`:help uganda`
  It's already shown to all users who don't use `shortmess+=I` upon
  starting nvim, and is already placed prominently in help.txt, i.e.,
  `:help` run with no arguments.

`:help credits`
  Already mentioned near the top of help.txt.

`README.md`
  Already mentioned in develop.txt.
This commit is contained in:
Michael Reed 2015-11-27 16:09:27 -05:00
parent 951714ede6
commit 53ee6425c8
46 changed files with 6 additions and 329 deletions

View File

@ -1,10 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
*/
#ifndef NVIM_ASCII_H #ifndef NVIM_ASCII_H
#define NVIM_ASCII_H #define NVIM_ASCII_H

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* buffer.c: functions for dealing with the buffer structure * buffer.c: functions for dealing with the buffer structure
*/ */

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* edit.c: functions for Insert mode * edit.c: functions for Insert mode
*/ */

View File

@ -1,12 +1,3 @@
/*
*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* eval.c: Expression evaluation. * eval.c: Expression evaluation.
*/ */

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* ex_cmds.c: some functions for command line commands * ex_cmds.c: some functions for command line commands
*/ */

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* ex_cmds2.c: some more functions for command line commands * ex_cmds2.c: some more functions for command line commands
*/ */

View File

@ -1,9 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
*/
#ifndef NVIM_EX_CMDS_DEFS_H #ifndef NVIM_EX_CMDS_DEFS_H
#define NVIM_EX_CMDS_DEFS_H #define NVIM_EX_CMDS_DEFS_H

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* ex_docmd.c: functions for executing an Ex command line. * ex_docmd.c: functions for executing an Ex command line.
*/ */

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* ex_eval.c: functions for Ex command line for the +eval feature. * ex_eval.c: functions for Ex command line for the +eval feature.
*/ */

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* ex_getln.c: Functions for entering and editing an Ex command line. * ex_getln.c: Functions for entering and editing an Ex command line.
*/ */

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* fileio.c: read from and write to a file * fileio.c: read from and write to a file
*/ */

View File

@ -1,11 +1,4 @@
/* vim: set fdm=marker fdl=1 fdc=3 // vim: set fdm=marker fdl=1 fdc=3
*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* fold.c: code for folding * fold.c: code for folding

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* getchar.c * getchar.c
* *

View File

@ -1,10 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
*/
#ifndef NVIM_GLOBALS_H #ifndef NVIM_GLOBALS_H
#define NVIM_GLOBALS_H #define NVIM_GLOBALS_H

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* hardcopy.c: printing to paper * hardcopy.c: printing to paper
*/ */

View File

@ -4,9 +4,8 @@
* *
* The basic idea/structure of cscope for Vim was borrowed from Nvi. There * The basic idea/structure of cscope for Vim was borrowed from Nvi. There
* might be a few lines of code that look similar to what Nvi has. * might be a few lines of code that look similar to what Nvi has.
*
* See README.md for an overview of the Vim source code.
*/ */
#include <stdbool.h> #include <stdbool.h>
#include <assert.h> #include <assert.h>

View File

@ -1,4 +1,4 @@
/************************************************************************ /*
* functions that use lookup tables for various things, generally to do with * functions that use lookup tables for various things, generally to do with
* special key codes. * special key codes.
*/ */

View File

@ -1,10 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
*/
#ifndef NVIM_KEYMAP_H #ifndef NVIM_KEYMAP_H
#define NVIM_KEYMAP_H #define NVIM_KEYMAP_H

View File

@ -1,17 +1,6 @@
#ifndef NVIM_MACROS_H #ifndef NVIM_MACROS_H
#define NVIM_MACROS_H #define NVIM_MACROS_H
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
*/
/*
* macros.h: macro definitions for often used code
*/
#ifndef MIN #ifndef MIN
# define MIN(X, Y) ((X) < (Y) ? (X) : (Y)) # define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
#endif #endif

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
#define EXTERN #define EXTERN
#include <assert.h> #include <assert.h>
#include <stdint.h> #include <stdint.h>
@ -1864,5 +1856,3 @@ static void check_swap_exists_action(void)
getout(1); getout(1);
handle_swap_exists(NULL); handle_swap_exists(NULL);
} }

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* mark.c: functions for setting marks and jumping to them * mark.c: functions for setting marks and jumping to them
*/ */

View File

@ -1,13 +1,6 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
* Multibyte extensions partly by Sung-Hoon Baek
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* mbyte.c: Code specifically for handling multi-byte characters. * mbyte.c: Code specifically for handling multi-byte characters.
* Multibyte extensions partly by Sung-Hoon Baek
* *
* The encoding used in the core is set with 'encoding'. When 'encoding' is * The encoding used in the core is set with 'encoding'. When 'encoding' is
* changed, the following four variables are set (for speed). * changed, the following four variables are set (for speed).

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/// An abstraction to handle blocks of memory which can be stored in a file. /// An abstraction to handle blocks of memory which can be stored in a file.
/// This is the implementation of a sort of virtual memory. /// This is the implementation of a sort of virtual memory.
/// ///

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* for debugging */ /* for debugging */
/* #define CHECK(c, s) if (c) EMSG(s) */ /* #define CHECK(c, s) if (c) EMSG(s) */
#define CHECK(c, s) #define CHECK(c, s)

View File

@ -1,14 +1,6 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
* GUI/Motif support by Robert Webb
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* Code for menus. Used for the GUI and 'wildmenu'. * Code for menus. Used for the GUI and 'wildmenu'.
* GUI/Motif support by Robert Webb
*/ */
#include <assert.h> #include <assert.h>

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* message.c: functions for displaying messages on the command line * message.c: functions for displaying messages on the command line
*/ */

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* misc1.c: functions that didn't seem to fit elsewhere * misc1.c: functions that didn't seem to fit elsewhere
*/ */

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* misc2.c: Various functions. * misc2.c: Various functions.
*/ */

View File

@ -1,10 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* move.c: Functions for moving the cursor and scrolling text. * move.c: Functions for moving the cursor and scrolling text.
* *

View File

@ -1,10 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* normal.c: Contains the main routine for processing characters in command * normal.c: Contains the main routine for processing characters in command
* mode. Communicates closely with the code in ops.c to handle * mode. Communicates closely with the code in ops.c to handle

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* ops.c: implementation of various operators: op_shift, op_delete, op_tilde, * ops.c: implementation of various operators: op_shift, op_delete, op_tilde,
* op_change, op_yank, do_put, do_join * op_change, op_yank, do_put, do_join

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* Code to handle user-settable options. This is all pretty much table- * Code to handle user-settable options. This is all pretty much table-
* driven. Checklist for adding a new option: * driven. Checklist for adding a new option:

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* os_unix.c -- code for all flavors of Unix (BSD, SYSV, SVR4, POSIX, ...) * os_unix.c -- code for all flavors of Unix (BSD, SYSV, SVR4, POSIX, ...)
* *

View File

@ -1,4 +1,3 @@
#include <assert.h> #include <assert.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h> #include <stdbool.h>

View File

@ -1,7 +1,7 @@
/// @file popupmnu.c /// @file popupmnu.c
/// ///
/// Popup menu (PUM) /// Popup menu (PUM)
//
#include <assert.h> #include <assert.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h> #include <stdbool.h>

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* quickfix.c: functions for quickfix mode, using a file with error messages * quickfix.c: functions for quickfix mode, using a file with error messages
*/ */

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* screen.c: code for displaying on the screen * screen.c: code for displaying on the screen
* *

View File

@ -1,10 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* search.c: code for normal mode searching commands * search.c: code for normal mode searching commands
*/ */

View File

@ -1,9 +1,3 @@
// VIM - Vi IMproved by Bram Moolenaar
//
// Do ":help uganda" in Vim to read copying and usage conditions.
// Do ":help credits" in Vim to see a list of people who contributed.
// See README.md for an overview of the Vim source code.
// spell.c: code for spell checking // spell.c: code for spell checking
// //
// The spell checking mechanism uses a tree (aka trie). Each node in the tree // The spell checking mechanism uses a tree (aka trie). Each node in the tree

View File

@ -1,4 +1,3 @@
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h> #include <stdbool.h>
#include <string.h> #include <string.h>

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* syntax.c: code for syntax highlighting * syntax.c: code for syntax highlighting
*/ */

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* Code to handle tags and the tag stack * Code to handle tags and the tag stack
*/ */

View File

@ -1,10 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
*/
#ifndef NVIM_TYPES_H #ifndef NVIM_TYPES_H
#define NVIM_TYPES_H #define NVIM_TYPES_H

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
/* /*
* undo.c: multi level undo facility * undo.c: multi level undo facility
* *

View File

@ -1,10 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
*/
#ifndef NVIM_VIM_H #ifndef NVIM_VIM_H
#define NVIM_VIM_H #define NVIM_VIM_H

View File

@ -1,11 +1,3 @@
/*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read a list of people who contributed.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.md for an overview of the Vim source code.
*/
#include <assert.h> #include <assert.h>
#include <inttypes.h> #include <inttypes.h>
#include <stdbool.h> #include <stdbool.h>