Mercurial > vim
changeset 16407:cbb6e28af4cb v8.1.1208
patch 8.1.1208: links to repository use wrong file name
commit https://github.com/vim/vim/commit/c8cc0ad477c1921afb11080fb96c764369cf04b8
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Apr 26 21:31:38 2019 +0200
patch 8.1.1208: links to repository use wrong file name
Problem: Links to repository use wrong file name.
Solution: Swap the file names. (Nahuel Ourthe, closes https://github.com/vim/vim/issues/4304)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 26 Apr 2019 21:45:07 +0200 |
parents | 78f68847e3a9 |
children | 9bb0ad3d3388 |
files | src/README.md src/version.c |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/README.md +++ b/src/README.md @@ -82,10 +82,10 @@ The current mode is stored in `State`. The current window is `curwin`. The current buffer is `curbuf`. These point to structures with the cursor position in the window, option values, the file name, etc. These are defined in -[`structs.h`](https://github.com/vim/vim/blob/master/src/globals.h). +[`structs.h`](https://github.com/vim/vim/blob/master/src/structs.h). All the global variables are declared in -[`globals.h`](https://github.com/vim/vim/blob/master/src/structs.h). +[`globals.h`](https://github.com/vim/vim/blob/master/src/globals.h). ## The main loop ##