diff -r 4604a182f04c runtime/doc/if_cscop.txt --- a/runtime/doc/if_cscop.txt Sun Nov 30 22:51:06 2014 +0100 +++ b/runtime/doc/if_cscop.txt Thu Dec 04 13:15:23 2014 -0800 @@ -223,6 +223,11 @@ This command is same as the ":cscope" co '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 4604a182f04c runtime/doc/index.txt --- a/runtime/doc/index.txt Sun Nov 30 22:51:06 2014 +0100 +++ b/runtime/doc/index.txt Thu Dec 04 13:15:23 2014 -0800 @@ -1324,6 +1324,7 @@ tag command action ~ |: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 4604a182f04c src/ex_cmds.h --- a/src/ex_cmds.h Sun Nov 30 22:51:06 2014 +0100 +++ b/src/ex_cmds.h Thu Dec 04 13:15:23 2014 -0800 @@ -849,6 +849,9 @@ EX(CMD_lwindow, "lwindow", ex_cwindow, EX(CMD_ls, "ls", buflist_list, BANG|TRLBAR|CMDWIN, ADDR_LINES), +EX(CMD_lscscope, "lscscope", do_scscope, + EXTRA|NOTRLCOM|XFILE, + ADDR_LINES), EX(CMD_move, "move", ex_copymove, RANGE|WHOLEFOLD|EXTRA|TRLBAR|CMDWIN|MODIFY, ADDR_LINES), diff -r 4604a182f04c src/if_cscope.c --- a/src/if_cscope.c Sun Nov 30 22:51:06 2014 +0100 +++ b/src/if_cscope.c Thu Dec 04 13:15:23 2014 -0800 @@ -1116,7 +1116,8 @@ cs_find(eap) eap->arg[i] = ' '; return cs_find_common(opt, pat, eap->forceit, TRUE, - eap->cmdidx == CMD_lcscope, *eap->cmdlinep); + eap->cmdidx == CMD_lcscope || eap->cmdidx == CMD_lscscope, + *eap->cmdlinep); } /* cs_find */ @@ -1280,12 +1281,6 @@ cs_find_common(opt, pat, forceit, verbos { cs_file_results(f, nummatches); fclose(f); - 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 == '-', cmdline) > 0) - { # ifdef FEAT_WINDOWS if (postponed_split != 0) { @@ -1295,7 +1290,12 @@ cs_find_common(opt, pat, forceit, verbos 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 == '-', cmdline) > 0) + { # ifdef FEAT_AUTOCMD apply_autocmds(EVENT_QUICKFIXCMDPOST, (char_u *)"cscope", curbuf->b_fname, TRUE, curbuf);