summaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2003-04-05 23:54:30 +0000
committersabetts <sabetts>2003-04-05 23:54:30 +0000
commit574a96e7beb091762046ce4b04fb41dcf82bc2fc (patch)
treefadcfb323cef8476900654f1032821b7bd368c95 /src/window.c
parentcee9fe0516fbc0946d568d7761d771cf204eb3b9 (diff)
downloadratpoison-574a96e7beb091762046ce4b04fb41dcf82bc2fc.zip
* src/window.c (get_window_list): if wrap_window_list is on then
the end of the mark is the length of the buffer minus the start of the mark. * src/main.c (init_defaults): init wrap_window_list to 0. * src/input.c (update_input_window): store the height in a variable. * src/data.h (struct rp_defaults): new member, wrap_window_list. * src/bar.h [message]: wrap msg arg in parens. (marked_wrapped_message): new prototype * src/bar.c (bar_y): new argument, height. All callers updated. (bar_y): use height in calculations. (update_window_names): print a column of windows if defaults.wrap_window_list is on. (count_lines): new function (max_line_length): likewise (pos_in_line): likewise (line_beginning): likewise (marked_wrapped_message): likewise * src/actions.c (user_commands): new commands 'verbexec' and 'defwrapwinlist'. Move @end take to after the def* commands. (cmd_verbexec): new function. Added prototype. (cmd_defwrapwinlist): likewise
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c
index 37eec0c..0153704 100644
--- a/src/window.c
+++ b/src/window.c
@@ -665,8 +665,13 @@ get_window_list (char *fmt, char *delim, struct sbuf *buffer,
if (delim && w->node.next != &rp_mapped_window)
sbuf_concat (buffer, delim);
- if (w == current_window())
- *mark_end = strlen (sbuf_get (buffer));
+ if (w == current_window()) {
+ if(!defaults.wrap_window_list){
+ *mark_end = strlen (sbuf_get (buffer));
+ } else {
+ *mark_end = strlen (sbuf_get(buffer)) - *mark_start;
+ }
+ }
}
if (!strcmp (sbuf_get (buffer), ""))