comparison src/README.md @ 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 3fc956fc63b6
children 5b5c5daf57de
comparison
equal deleted inserted replaced
16406:78f68847e3a9 16407:cbb6e28af4cb
80 `INSERT`, `CMDLINE`, and a few others. 80 `INSERT`, `CMDLINE`, and a few others.
81 81
82 The current window is `curwin`. The current buffer is `curbuf`. These point 82 The current window is `curwin`. The current buffer is `curbuf`. These point
83 to structures with the cursor position in the window, option values, the file 83 to structures with the cursor position in the window, option values, the file
84 name, etc. These are defined in 84 name, etc. These are defined in
85 [`structs.h`](https://github.com/vim/vim/blob/master/src/globals.h). 85 [`structs.h`](https://github.com/vim/vim/blob/master/src/structs.h).
86 86
87 All the global variables are declared in 87 All the global variables are declared in
88 [`globals.h`](https://github.com/vim/vim/blob/master/src/structs.h). 88 [`globals.h`](https://github.com/vim/vim/blob/master/src/globals.h).
89 89
90 90
91 ## The main loop ## 91 ## The main loop ##
92 92
93 This is conveniently called `main_loop()`. It updates a few things and then 93 This is conveniently called `main_loop()`. It updates a few things and then