CVS code -
-
+- General
+ - New flag RELATIVECHARS to show column positino relative to
+ the current line instead of the current file. New flag
+ -C, --relative, changes to do_cursorpos().
- po/ca.po, po/es.po:
- Catalan and Spanish translation updates (Jordi).
printf(_("Usage: nano [GNU long option] [option] +LINE <file>\n\n"));
printf(_("Option Long option Meaning\n"));
+ printf
+ (_
+ (" -C --relative Show relative col position with ^C\n"));
#ifndef NANO_SMALL
printf
(_
#else
printf(_("Usage: nano [option] +LINE <file>\n\n"));
printf(_("Option Meaning\n"));
+ printf(_(" -C Show relative col position with ^C\n"));
#ifndef NANO_SMALL
printf(_(" -D Write file in DOS format\n"));
#endif
{"smooth", 0, 0, 'S'},
#endif
{"keypad", 0, 0, 'K'},
-
+ {"relative", 0, 0, 'C'},
{0, 0, 0, 0}
};
#endif
#endif /* ENABLE_NANORC */
#ifdef HAVE_GETOPT_LONG
- while ((optchr = getopt_long(argc, argv, "h?DFKMRST:Vabcefgijklmo:pr:s:tvwxz",
+ while ((optchr = getopt_long(argc, argv, "h?CDFKMRST:Vabcefgijklmo:pr:s:tvwxz",
long_options, &option_index)) != EOF) {
#else
while ((optchr =
- getopt(argc, argv, "h?DFKMRST:Vabcefgijklmo:pr:s:tvwxz")) != EOF) {
+ getopt(argc, argv, "h?CDFKMRST:Vabcefgijklmo:pr:s:tvwxz")) != EOF) {
#endif
switch (optchr) {
+ case 'C':
+ SET(RELATIVECHARS);
+ break;
#ifndef NANO_SMALL
case 'D':
SET(DOS_FILE);
#define SMOOTHSCROLL (1<<23)
#define DISABLE_CURPOS (1<<24) /* Damn, we still need it */
#define ALT_KEYPAD (1<<25) /* Damn, we still need it */
+#define RELATIVECHARS (1<<26)
/* Control key sequences, changing these would be very very bad */
# Constantly update the cursor position
# set const
+# Show column position relative to the current line, not the whole file
+# set relative
+
# Use cut to end of line with ^K by default
# set cut
#endif
#ifndef DISABLE_WRAPJUSTIFY
-#define NUM_RCOPTS 19
+#define NUM_RCOPTS 20
#else
-#define NUM_RCOPTS 18
+#define NUM_RCOPTS 19
#endif
/* Static stuff for the nanorc file */
{"suspend", SUSPEND},
{"multibuffer", MULTIBUFFER},
{"smooth", SMOOTHSCROLL},
- {"keypad", ALT_KEYPAD}
+ {"keypad", ALT_KEYPAD},
+ {"relative", RELATIVECHARS}
};
static int errors = 0;
{
filestruct *fileptr;
float linepct = 0.0, bytepct = 0.0;
- long i = 0;
+ long i = 0, j = 0;
static long old_i = -1, old_totsize = -1;
if (current == NULL || fileage == NULL)
return 0;
- for (fileptr = fileage; fileptr != current && fileptr != NULL;
- fileptr = fileptr->next)
- i += strlen(fileptr->data) + 1;
-
- if (fileptr == NULL)
- return -1;
-
- i += current_x;
-
if (old_i == -1)
old_i = i;
if (old_totsize == -1)
old_totsize = totsize;
- if (totlines > 0)
- linepct = 100 * current->lineno / totlines;
+ if (ISSET(RELATIVECHARS)) {
+
+ if (strlen(current->data) == 0)
+ bytepct = 0;
+ else
+ bytepct = 100 * current_x / strlen(current->data);
+
+ old_i = -1;
+ i = current_x;
+ j = strlen(current->data);
- if (totsize > 0)
- bytepct = 100 * i / totsize;
+ } else {
+ for (fileptr = fileage; fileptr != current && fileptr != NULL;
+ fileptr = fileptr->next)
+ i += strlen(fileptr->data) + 1;
+
+ if (fileptr == NULL)
+ return -1;
+
+ i += current_x;
+
+ j = totsize;
+
+ if (totsize > 0)
+ bytepct = 100 * i / totsize;
+ }
+
+ if (totlines > 0)
+ linepct = 100 * current->lineno / totlines;
#ifdef DEBUG
fprintf(stderr, _("do_cursorpos: linepct = %f, bytepct = %f\n"),
if (!constant || (old_i != i || old_totsize != totsize)) {
statusbar(_
("line %d of %d (%.0f%%), character %ld of %ld (%.0f%%)"),
- current->lineno, totlines, linepct, i, totsize, bytepct);
+ current->lineno, totlines, linepct, i, j, bytepct);
}
old_i = i;