![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/root/usr/local/lib/node_modules/mediasoup/worker/ |
Upload File : |
" session title set title titlestring=mediasoup " formatting set wrap " do not wrap long lines set autoindent " indent at the same lave of the previous line set smartindent " intelligent indentation for C set shiftwidth=2 " use indents of 2 spaces " tabs are tabs set noexpandtab " tabs are spaces, not tabs set tabstop=2 " an indentation every 2 columns set softtabstop=2 " backspace delete indent set backspace=2 " make backspace work set nojoinspaces " do not insert two spaces after punctuation on a join (J) " Trim white spaces on saving file function! TrimWhiteSpace() %s/\s\+$//e endfunction autocmd BufWritePre *.cpp,*.h :call TrimWhiteSpace() " extend the path to be able to jump to header files set path+=$PWD/include,$PWD/include/RTC " ycm Options. let ycm_autoclose_preview_window_after_insertion=1 " a.vim " C C++ let g:alternateExtensions_h = "c" let g:alternateExtensions_hpp = "cpp" let g:alternateExtensions_cpp = "hpp" let g:alternateExtensions_c = "h" " let g:alternateSearchPath ='abs:~/src/mediasoup/worker/include/RTC' " \abs:~/src/mediasoup/worker/include, " \abs:~/src/mediasoup/worker/include/Channel, " \abs:~/src/mediasoup/worker/include/RTC, " \abs:~/src/mediasoup/worker/include/RTC/RTCP " \' " \abs:~/src/mediasoup/worker/src, " \abs:~/src/mediasoup/worker/src/Channel, " \abs:~/src/mediasoup/worker/src/RTC, " \abs:~/src/mediasoup/worker/src/RTC/RTCP, " code coverage " NOTE: llcov plugin was modified to add 'xcrun' on every call to llvm-X let llvmcov#bin = "~/src/mediasoup/worker/out/Release/mediasoup-worker-test" let llvmcov#pwd = "." " replace zero_one_two_three by zeroOneTwoThree let @4 = ':%s/\<\(\w\+\)_\([a-z]\)\(\w\+\)_\([a-z]\)\(\w\+\)_\([a-z]\)\(\w\+\)_\([a-z]\)\(\w\+\)\>/\1\u\2\3\u\4\5\u\6\7\u\8\9/c' let @3 = ':%s/\<\(\w\+\)_\([a-z]\)\(\w\+\)_\([a-z]\)\(\w\+\)_\([a-z]\)\(\w\+\)\>/\1\u\2\3\u\4\5\u\6\7/c' let @2 = ':%s/\<\(\w\+\)_\([a-z]\)\(\w\+\)_\([a-z]\)\(\w\+\)\>/\1\u\2\3\u\4\5/c' let @1 = ':%s/\<\(\w\+\)_\([a-z]\)\(\w\+\)\>/\1\u\2\3/c'