Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8.2, 0.8.3, and 0.9

doc: fix vim modelines

We want to set tabstop, not textwidth

Changeset cc9b19917daa

Parent 36d18c5fee01

by Steve Borho

Changes to 14 files · Browse files at cc9b19917daa Showing diff from parent 36d18c5fee01 Diff from another changeset...

 
188
189
190
191
 
 
188
189
190
 
191
@@ -188,4 +188,4 @@
 :guilabel:`Bottom Diffs`   Show diffs below file list   -.. vim: noet tw=4 +.. vim: noet ts=4
 
317
318
319
320
 
 
317
318
319
 
320
@@ -317,4 +317,4 @@
 command. Qct was already doing both of these things, so this  will come as no surprise to Qct users.   -.. vim: noet tw=4 +.. vim: noet ts=4
 
107
108
109
110
 
 
107
108
109
 
110
@@ -107,4 +107,4 @@
 *hgcmd* also responds appropriately to the global :kbd:`CTRL-W` and  more drastic :kbd:`CTRL-Q` accelerators.   -.. vim: noet tw=4 +.. vim: noet ts=4
 
103
104
105
106
 
 
103
104
105
 
106
@@ -103,4 +103,4 @@
 :menuselection:`TortoiseHg --> Tab width`   Number of spaces to expand tabs in diffs and annotate output   -.. vim: noet tw=4 +.. vim: noet ts=4
 
68
69
70
71
 
 
68
69
70
 
71
@@ -68,4 +68,4 @@
 In the options dialog you can promote individual menu options to  the top menu.   -.. vim: noet tw=4 +.. vim: noet ts=4
 
261
262
263
264
 
 
261
262
263
 
264
@@ -261,4 +261,4 @@
  You can find :file:`gtkrc` file in your TortoiseHg install directory:   i.e. :file:`C:\\Program Files\\TortoiseHg\\gtk\\etc\\gtk-2.0\\gtkrc`   -.. vim: noet tw=4 +.. vim: noet ts=4
 
32
33
34
35
 
 
32
33
34
 
35
@@ -32,4 +32,4 @@
 * :ref:`modindex`  * :ref:`search`   -.. vim: noet tw=4 +.. vim: noet ts=4
 
25
26
27
28
 
 
25
26
27
 
28
@@ -25,4 +25,4 @@
 extension being a noticeable exception). The hgtk script can be used  on any platform that supports PyGtk, including Mac OS X.   -.. vim: noet tw=4 +.. vim: noet ts=4
 
87
88
89
90
 
 
87
88
89
 
90
@@ -87,4 +87,4 @@
 .. warning::   An important note. Pay attention.   -.. vim: noet tw=4 +.. vim: noet ts=4
 
27
28
29
30
 
 
27
28
29
 
30
@@ -27,4 +27,4 @@
  :command:`hg verify` - perform a consistency check of the contents of your   repository   -.. vim: noet tw=4 +.. vim: noet ts=4
 
51
52
53
54
 
 
51
52
53
 
54
@@ -51,4 +51,4 @@
 * Improved error handling  * i18n fixes   -.. vim: noet tw=4 +.. vim: noet ts=4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
 
83
 ===================  TortoiseHg Settings  ===================    .. module:: settings.dialog   :synopsis: Dialog used to set preferences    .. figure:: figures/settings.png   :alt: Settings dialog     Settings dialog    The Settings dialog is used to configure both TortoiseHg and the  underlying Mercurial DVCS. Since TortoiseHg uses Mercurial's underlying  configuration system to store and retrieve its settings, these are  essentially the same thing.    Mercurial on Windows has a three-tier configuration system.    1) A site-wide configuration file in   :file:`C:\\Program Files\\TortoiseHg\\Mercurial.ini`   This file is read first and thus has the lowest priority.  2) A per-user configuration file in   :file:`C:\\Documents and Settings\\username\\Mercurial.ini`   This file is read second and thus can override settings in the   site-wide configuration file.  3) A per-repository configuration file in :file:`repo-root\\.hg\\hgrc` This   file is read last and can override site-wide and user global settings.    The site-wide file can be overwritten on upgrades so it is recommended  that you do not make changes to this file. Instead, you should make  changes to your user :file:`Mercurial.ini` and/or the repository  :file:`hgrc` file. The TortoiseHg Settings dialog enforces this  suggestion by only operating in two modes:    Global   edits your user :file:`Mercurial.ini` file  Repository   edits a repository :file:`.hg/hgrc` file    In TortoiseHg 0.8, you may toggle between the two modes using the combo  box at the top of the dialog.    Most TortoiseHg users will want to store all configurables in their  global user settings, and only use the repository hgrc to store paths  (remote repository aliases) and web settings, though it is possible to  override many configurables per-repository (a common example is to  configure a different username for use in a repository). Also note that  the user and repository configuration files may not exist until you run  the Settings dialog for the first time.    Tabs  ====    The Settings tool is a tabbed application.    Each tab corresponds roughly to a section of your :file:`Mercurial.ini`  file, though there is a certain amount of overlap. Some sections were  split across multiple tabs for clarity.    Every tab except of the :guilabel:`Paths` tab has the same format, a list of  configurable options with a drop-down combo box with possible values and  a history of options you have used for that setting. The configurable  name (label) has a tooltip which describes in more detail what you are  configuring and its default value.    The :guilabel:`Paths` tab is where you can store URLs (paths) to related  repositories. It is rare to store paths in the site-wide or user  configuration files, most of the time you will only store these in a  repository configuration file. Mercurial has two special path names that  can be used as default targets for some operations.    default   the default URL to pull from, usually clone source  default-push   the default push target when using the command line    Please consult the Mercurial wiki for more detailed information about  these configurables (except for the first three tabs:  :guilabel:`TortoiseHg`, :guilabel:`Commit`, :guilabel:`Changelog`, which  are specifically for TortoiseHg).   -.. vim: noet tw=4 +.. vim: noet ts=4
 
120
121
122
123
 
 
120
121
122
 
123
@@ -120,4 +120,4 @@
 * :menuselection:`TortoiseHg --> Bottom Diffs`  * :menuselection:`TortoiseHg --> Tab Width`   -.. vim: noet tw=4 +.. vim: noet ts=4
 
143
144
145
146
 
 
143
144
145
 
146
@@ -143,4 +143,4 @@
 * Email dialog now sends an intro message only when one has been   entered, regardless of patch count.   -.. vim: noet tw=4 +.. vim: noet ts=4