Mercurial > vim-lawrencium
comparison README.markdown @ 155:e52c62ac52fc default tip master
Fixed a couple issues with README
author | Zach Wilson <zakrywilson@gmail.com> |
---|---|
date | Wed, 19 Jan 2022 11:42:53 -0600 |
parents | f9abc2e2aa90 |
children |
comparison
equal
deleted
inserted
replaced
154:40181bd0ffcd | 155:e52c62ac52fc |
---|---|
26 Work on it for a bit, then open another file, this time using `Hgedit` and a | 26 Work on it for a bit, then open another file, this time using `Hgedit` and a |
27 repository-relative path: | 27 repository-relative path: |
28 | 28 |
29 :Hgedit src/bar.py | 29 :Hgedit src/bar.py |
30 | 30 |
31 Take advantage of the auto-completion when typing the path! Work on that | 31 Take advantage of the auto-completion when typing the path! Work on that |
32 other file too, then compare it to the parent revision version: | 32 other file too, then compare it to the parent revision version: |
33 | 33 |
34 :Hgvdiff | 34 :Hgvdiff |
35 | 35 |
36 Continue working. At any moment, you can run a Mercurial command and get a | 36 Continue working. At any moment, you can run a Mercurial command and get a |
45 Once you're happy with your work, bring up the status window: | 45 Once you're happy with your work, bring up the status window: |
46 | 46 |
47 :Hgstatus | 47 :Hgstatus |
48 | 48 |
49 You can see the difference between modified files and their parent revision | 49 You can see the difference between modified files and their parent revision |
50 version easily by moving the cursor to the appropriate line and hitting | 50 version easily by moving the cursor to the appropriate line and hitting |
51 <C-V>. You can also do an `addremove` by using <C-A> (use the selection mode | 51 `Ctrl-V`. You can also do an `addremove` by using `Ctrl-A` (use the selection mode |
52 to add/remove several files at once!). | 52 to add/remove several files at once!). |
53 | 53 |
54 Now it's time to commit. While still in the status window, remove all mentions | 54 Now it's time to commit. While still in the status window, remove all mentions |
55 of files you don't want to commit, and hit <C-S>. Write your commit message, | 55 of files you don't want to commit, and hit `Ctrl-S`. Write your commit message, |
56 go `:wq`, and you're done! You can check everything went fine: | 56 go `:wq`, and you're done! You can check everything went fine: |
57 | 57 |
58 :Hg tip | 58 :Hg tip |
59 | 59 |
60 You can also commit faster with the `:Hgcommit` command of course! | 60 You can also commit faster with the `:Hgcommit` command of course! |
61 | 61 |
62 And that's it for now. Open the help file with `:help lawrencium`, and post | 62 And that's it for now. Open the help file with `:help lawrencium`, and post |
63 your questions and problems in the [issue tracker][1] on BitBucket. | 63 your questions and problems in the [issue tracker][1] on BitBucket. |
64 | 64 |
65 | 65 |
66 [mercurial]: http://hg-scm.com | 66 [mercurial]: https://www.mercurial-scm.org/ |
67 [vim]: http://www.vim.org | 67 [vim]: http://www.vim.org |
68 [fugitive]: https://github.com/tpope/vim-fugitive | 68 [fugitive]: https://github.com/tpope/vim-fugitive |
69 [pathogen]: https://github.com/tpope/vim-pathogen | 69 [pathogen]: https://github.com/tpope/vim-pathogen |
70 [1]: https://bitbucket.org/ludovicchabant/vim-lawrencium/issues | 70 [1]: https://bitbucket.org/ludovicchabant/vim-lawrencium/issues |
71 | 71 |