Skip to content

Commit

Permalink
Changelog the search-ability in the windowlist.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sadrul Habib Chowdhury committed Feb 24, 2010
1 parent fcdce5c commit 230cee8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/ChangeLog
Expand Up @@ -56,6 +56,10 @@ Version 4.1.0 (??/??/20??):
* Press 'm' to toggle the most-recent view.
* Press 'g' to toggle nestedness.
* Press 'a' to view all windows in the list.
* Press '/' to search in the list.

Display List:
* Press 'd' to detach a display, 'D' to power-detach.

Others:
* Start using 'ChangeLog' for logging changes again.
Expand Down
6 changes: 5 additions & 1 deletion src/help.c
@@ -1,4 +1,7 @@
/* Copyright (c) 2008, 2009
/* Copyright (c) 2010
* Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
* Sadrul Habib Chowdhury (sadrul@users.sourceforge.net)
* Copyright (c) 2008, 2009
* Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
* Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de)
* Micah Cowan (micah@cowan.name)
Expand Down Expand Up @@ -508,6 +511,7 @@ static const char cpmsg[] = "\
\n\
Screen version %v\n\
\n\
Copyright (c) 2010 Juergen Weigert, Sadrul Habib Chowdhury\n\
Copyright (c) 2008, 2009 Juergen Weigert, Michael Schroeder, Micah Cowan, Sadrul Habib Chowdhury\n\
Copyright (c) 1993-2002, 2003, 2005, 2006, 2007 Juergen Weigert, Michael Schroeder\n\
Copyright (c) 1987 Oliver Laumann\n\
Expand Down
4 changes: 2 additions & 2 deletions src/list_display.c
Expand Up @@ -169,6 +169,7 @@ gl_Display_input(struct ListData *ldata, char **inp, int *len)
*len = 0;
break;

#ifdef REMOTE_DETACH
case 'd': /* Detach */
case 'D': /* Power detach */
display = ldata->selected->data;
Expand All @@ -185,8 +186,7 @@ gl_Display_input(struct ListData *ldata, char **inp, int *len)
glist_remove_rows(ldata);
gl_Display_rebuild(ldata);
break;

break;
#endif

default:
/* We didn't actually process the input. */
Expand Down

0 comments on commit 230cee8

Please sign in to comment.