mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
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:
parent
951714ede6
commit
53ee6425c8
@ -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
|
||||
#define NVIM_ASCII_H
|
||||
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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.
|
||||
*/
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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
|
||||
#define NVIM_EX_CMDS_DEFS_H
|
||||
|
||||
|
@ -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.
|
||||
*/
|
||||
|
@ -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.
|
||||
*/
|
||||
|
@ -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.
|
||||
*/
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -1,11 +1,4 @@
|
||||
/* 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.
|
||||
*/
|
||||
// vim: set fdm=marker fdl=1 fdc=3
|
||||
|
||||
/*
|
||||
* fold.c: code for folding
|
||||
|
@ -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
|
||||
*
|
||||
|
@ -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
|
||||
#define NVIM_GLOBALS_H
|
||||
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -4,9 +4,8 @@
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* See README.md for an overview of the Vim source code.
|
||||
*/
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <assert.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
/************************************************************************
|
||||
/*
|
||||
* functions that use lookup tables for various things, generally to do with
|
||||
* special key codes.
|
||||
*/
|
||||
|
@ -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
|
||||
#define NVIM_KEYMAP_H
|
||||
|
||||
|
@ -1,17 +1,6 @@
|
||||
#ifndef 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
|
||||
# define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
|
||||
#endif
|
||||
|
@ -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
|
||||
#include <assert.h>
|
||||
#include <stdint.h>
|
||||
@ -1864,5 +1856,3 @@ static void check_swap_exists_action(void)
|
||||
getout(1);
|
||||
handle_swap_exists(NULL);
|
||||
}
|
||||
|
||||
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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.
|
||||
* Multibyte extensions partly by Sung-Hoon Baek
|
||||
*
|
||||
* The encoding used in the core is set with 'encoding'. When 'encoding' is
|
||||
* changed, the following four variables are set (for speed).
|
||||
|
@ -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.
|
||||
/// This is the implementation of a sort of virtual memory.
|
||||
///
|
||||
|
@ -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 */
|
||||
/* #define CHECK(c, s) if (c) EMSG(s) */
|
||||
#define CHECK(c, s)
|
||||
|
@ -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'.
|
||||
* GUI/Motif support by Robert Webb
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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.
|
||||
*/
|
||||
|
@ -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.
|
||||
*
|
||||
|
@ -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
|
||||
* mode. Communicates closely with the code in ops.c to handle
|
||||
|
@ -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,
|
||||
* op_change, op_yank, do_put, do_join
|
||||
|
@ -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-
|
||||
* driven. Checklist for adding a new option:
|
||||
|
@ -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, ...)
|
||||
*
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
#include <assert.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdbool.h>
|
||||
|
@ -1,7 +1,7 @@
|
||||
/// @file popupmnu.c
|
||||
///
|
||||
/// Popup menu (PUM)
|
||||
//
|
||||
|
||||
#include <assert.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdbool.h>
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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
|
||||
*
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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
|
||||
//
|
||||
// The spell checking mechanism uses a tree (aka trie). Each node in the tree
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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
|
||||
#define NVIM_TYPES_H
|
||||
|
||||
|
@ -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
|
||||
*
|
||||
|
@ -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
|
||||
#define NVIM_VIM_H
|
||||
|
||||
|
@ -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 <inttypes.h>
|
||||
#include <stdbool.h>
|
||||
|
Loading…
Reference in New Issue
Block a user