# HG changeset patch # User Navdeep Parhar # Date 1262891320 28800 # Node ID 5d9038ea6e5495d113e3db74734503f339b6e25e # Parent 8a0a8f10b43e02d44ff26d608cd80fb61ce4773d ":lscscope" command - like ":scscope" but uses location list. diff -r 8a0a8f10b43e -r 5d9038ea6e54 runtime/doc/if_cscop.txt --- a/runtime/doc/if_cscop.txt Wed Feb 03 18:14:49 2010 +0100 +++ b/runtime/doc/if_cscop.txt Thu Jan 07 11:08:40 2010 -0800 @@ -224,6 +224,11 @@ 'cscopequickfix' option is set, the location list for the current window is used instead of the quickfix list to show the cscope results. + *:lscscope* *:lsc* +This command is same as the ":scscope" command, except when the +'cscopequickfix' option is set, the location list for the current window is +used instead of the quickfix list to show the cscope results. + *:cstag* *E257* *E562* If you use cscope as well as ctags, |:cstag| allows you to search one or the other before making a jump. For example, you can choose to first diff -r 8a0a8f10b43e -r 5d9038ea6e54 runtime/doc/index.txt --- a/runtime/doc/index.txt Wed Feb 03 18:14:49 2010 +0100 +++ b/runtime/doc/index.txt Thu Jan 07 11:08:40 2010 -0800 @@ -1296,6 +1296,7 @@ |:lpfile| :lpf[ile] go to last location in previous file |:lrewind| :lr[ewind] go to the specified location, default first one |:ls| :ls list all buffers +|:lscscope| :lsc[scope] like ":scscope" but uses location list |:ltag| :lt[ag] jump to tag and add matching tags to the location list |:lunmap| :lu[nmap] like ":unmap!" but includes Lang-Arg mode diff -r 8a0a8f10b43e -r 5d9038ea6e54 src/ex_cmds.h --- a/src/ex_cmds.h Wed Feb 03 18:14:49 2010 +0100 +++ b/src/ex_cmds.h Thu Jan 07 11:08:40 2010 -0800 @@ -581,6 +581,8 @@ RANGE|NOTADR|COUNT|TRLBAR), EX(CMD_ls, "ls", buflist_list, BANG|TRLBAR|CMDWIN), +EX(CMD_lscscope, "lscscope", do_scscope, + EXTRA|NOTRLCOM|SBOXOK), EX(CMD_move, "move", ex_copymove, RANGE|WHOLEFOLD|EXTRA|TRLBAR|CMDWIN|MODIFY), EX(CMD_mark, "mark", ex_mark, diff -r 8a0a8f10b43e -r 5d9038ea6e54 src/if_cscope.c --- a/src/if_cscope.c Wed Feb 03 18:14:49 2010 +0100 +++ b/src/if_cscope.c Thu Jan 07 11:08:40 2010 -0800 @@ -1089,7 +1089,7 @@ } return cs_find_common(opt, pat, eap->forceit, TRUE, - eap->cmdidx == CMD_lcscope); + eap->cmdidx == CMD_lcscope || eap->cmdidx == CMD_lscscope); } /* cs_find */ @@ -1241,23 +1241,23 @@ { cs_file_results(f, nummatches); fclose(f); +# ifdef FEAT_WINDOWS + if (postponed_split != 0) + { + win_split(postponed_split > 0 ? postponed_split : 0, + postponed_split_flags); +# ifdef FEAT_SCROLLBIND + curwin->w_p_scb = FALSE; +# endif + postponed_split = 0; + } +# endif if (use_ll) /* Use location list */ wp = curwin; /* '-' starts a new error list */ if (qf_init(wp, tmp, (char_u *)"%f%*\\t%l%*\\t%m", *qfpos == '-') > 0) { -# ifdef FEAT_WINDOWS - if (postponed_split != 0) - { - win_split(postponed_split > 0 ? postponed_split : 0, - postponed_split_flags); -# ifdef FEAT_SCROLLBIND - curwin->w_p_scb = FALSE; -# endif - postponed_split = 0; - } -# endif if (use_ll) /* * In the location list window, use the displayed location