Mark Kelly

Results 25 comments of Mark Kelly

For ProjectList I did this - ``` function! rtags#ProjectList() "call rtags#ExecuteThen({ '-w' : '' }, [function('rtags#ProjectListHandler')]) let result = rtags#ExecuteRC({ '-w' : '' }) call rtags#ExecuteHandlers(result, [function('rtags#ProjectListHandler')]) endfunction ``` until...

Hi. I'll go figure it out. I used the synchronous method long ago and left it that way, but I did make some changes to the async code for other...

I found two issues, 1). the vim job handler did not always get all data, especially if the cmd ended quickly. And 2). the output from the async handler has...

Maybe not the same bash ? But same user ?? I can run from a different bash ok.

Thanks. I have added similar things to my fork such as: ``` function! rtags#DisplayLocations(locations) let num_of_locations = len(a:locations) + if num_of_locations == 0 + echohl | echomsg "[vim-rtags] No info...

Hi, I changed it this to my fork: ``` silent call system(g:rtagsRdmCmd." --tempdir /tmp/rdm-".$USER." --log-file /tmp/rdm-".$USER.".log --daemon") ``` in additon to some other updates I've found helpful, if you wanted...

@ghalliday yes - I think good idea to skip this if slowest activity was less than some configurable threshold (10 ms default).

@jakesmith refactored to use expert setting in helm values.yaml or expert (global and dafilesrv) settings in environment.xml.

@jakesmith added enable/disable FileFlagsMask. Please re-review when you have time.