xref: /vim-8.2.3635/src/libvterm/README (revision e178ba36)
1e4f25e4aSBram MoolenaarThis is a MODIFIED version of libvterm.
2e4f25e4aSBram Moolenaar
3e4f25e4aSBram MoolenaarThe original can be found:
49cc5f759SBram Moolenaar- on the original site (tar archive and Bazaar repository):
5e4f25e4aSBram Moolenaar	http://www.leonerd.org.uk/code/libvterm/
69cc5f759SBram Moolenaar- cloned on Github:
7e4f25e4aSBram Moolenaar	https://github.com/neovim/libvterm
8e4f25e4aSBram Moolenaar
9e4f25e4aSBram MoolenaarModifications:
10e4f25e4aSBram Moolenaar- Add a .gitignore file.
11e4f25e4aSBram Moolenaar- Convert from C99 to C90.
12e4f25e4aSBram Moolenaar- Other changes to support embedding in Vim.
13b5b49a3bSBram Moolenaar
14*e178ba36SBram MoolenaarTo find the diff of a libvterm patch edit this URL, changing "999" to the patch
15*e178ba36SBram Moolenaarnumber:
16*e178ba36SBram Moolenaar    https://bazaar.launchpad.net/~libvterm/libvterm/trunk/diff/999?context=3
17b5b49a3bSBram Moolenaar
18b5b49a3bSBram MoolenaarTo merge in changes from Github, do this:
19b5b49a3bSBram Moolenaar- Commit any pending changes.
20b5b49a3bSBram Moolenaar- Setup the merge tool:
21b5b49a3bSBram Moolenaar    git config merge.tool vimdiff
22b5b49a3bSBram Moolenaar    git config merge.conflictstyle diff3
23b5b49a3bSBram Moolenaar    git config mergetool.prompt false
24b5b49a3bSBram Moolenaar- Run the merge tool:
25b5b49a3bSBram Moolenaar    git mergetool
26b5b49a3bSBram Moolenaar  This will open a four-way diff between:
27b5b49a3bSBram Moolenaar     LOCAL  - your current version
28b5b49a3bSBram Moolenaar     BASE   - version as it was at your last sync
29b5b49a3bSBram Moolenaar     REMOTE - version at head on Github
30b5b49a3bSBram Moolenaar     MERGED - best-effort merge of LOCAL and REMOTE
31b5b49a3bSBram Moolenaar  Now find places where automatic merge didn't work, they are marked with
32b5b49a3bSBram Moolenaar  <<<<<<<<, ======= and >>>>>>>
33b5b49a3bSBram Moolenaar  Fix those places in MERGED, remove the markers, and save the file :wqall.
34