comparison runtime/doc/motion.txt @ 24:8ff7fd162d3c v7.0016

updated for version 7.0016
author vimboss
date Mon, 13 Sep 2004 20:26:32 +0000
parents 4ac1dce8dd5e
children 125e80798a85
comparison
equal deleted inserted replaced
23:3f44e9abe4ec 24:8ff7fd162d3c
1 *motion.txt* For Vim version 7.0aa. Last change: 2004 Jul 25 1 *motion.txt* For Vim version 7.0aa. Last change: 2004 Sep 07
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
729 *E283* 729 *E283*
730 :marks {arg} List the marks that are mentioned in {arg} (not a 730 :marks {arg} List the marks that are mentioned in {arg} (not a
731 motion command). For example: > 731 motion command). For example: >
732 :marks aB 732 :marks aB
733 < to list marks 'a' and 'B'. {not in Vi} 733 < to list marks 'a' and 'B'. {not in Vi}
734
735 *:delm* *:delmarks*
736 :delm[arks] {marks} Delete the specified marks. Marks that can be deleted
737 include A-Z and 0-9. You cannot delete the ' mark.
738 They can be specified by giving the list of mark
739 names, or with a range, separated with a dash. Spaces
740 are ignored. Examples: >
741 :delmarks a deletes mark a
742 :delmarks a b 1 deletes marks a, b and 1
743 :delmarks Aa deletes marks A and a
744 :delmarks p-z deletes marks in the range p to z
745 :delmarks ^.[] deletes marks ^ . [ ]
746 :delmarks \" deletes mark "
747 < {not in Vi}
748
749 :delm[arks]! Delete all marks for the current buffer, but not marks
750 A-Z or 0-9.
751 {not in Vi}
734 752
735 A mark is not visible in any way. It is just a position in the file that is 753 A mark is not visible in any way. It is just a position in the file that is
736 remembered. Do not confuse marks with named registers, they are totally 754 remembered. Do not confuse marks with named registers, they are totally
737 unrelated. 755 unrelated.
738 756