Skip to content

Commit d9f01a6

Browse files
committed
Release v0.0.73
1 parent 9f11599 commit d9f01a6

File tree

4 files changed

+44
-25
lines changed

4 files changed

+44
-25
lines changed

autoload/coc/util.vim

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -665,29 +665,16 @@ endfunction
665665

666666
function! coc#util#install(...) abort
667667
let opts = get(a:, 1, {})
668-
let l:terminal = get(opts, 'terminal', 0)
669-
let tag = get(opts, 'tag', 0)
670-
let cmd = (s:is_win ? 'install.cmd' : './install.sh') . (tag ? '' : ' nightly')
671-
function! s:OnInstalled(status, ...) closure
672-
if a:status != 0 | return | endif
673-
call coc#rpc#restart()
674-
endfunction
675-
" install.cmd would always exited with code 0 with/without errors.
676-
if l:terminal
677-
call coc#util#open_terminal({
678-
\ 'cmd': cmd,
679-
\ 'autoclose': 1,
680-
\ 'cwd': s:root,
681-
\ 'Callback': funcref('s:OnInstalled')
682-
\})
683-
wincmd p
684-
else
685-
let cwd = getcwd()
686-
exe 'lcd '.s:root
687-
exe '!'.cmd
688-
exe 'lcd '.cwd
689-
call s:OnInstalled(0)
668+
if !isdirectory(s:root.'/src')
669+
echohl WarningMsg | echon '[coc.nvim] coc#util#install not needed for release branch.' | echohl None
670+
return
690671
endif
672+
let cmd = (s:is_win ? 'install.cmd' : './install.sh') . ' nightly'
673+
let cwd = getcwd()
674+
exe 'lcd '.s:root
675+
exe '!'.cmd
676+
exe 'lcd '.cwd
677+
call coc#rpc#restart()
691678
endfunction
692679

693680
function! coc#util#do_complete(name, opt, cb) abort

build/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54267,7 +54267,7 @@ class Plugin extends events_1.EventEmitter {
5426754267
return false;
5426854268
}
5426954269
get version() {
54270-
return workspace_1.default.version + ( true ? '-' + "30efc7d4ee" : undefined);
54270+
return workspace_1.default.version + ( true ? '-' + "56825890dc" : undefined);
5427154271
}
5427254272
async showInfo() {
5427354273
if (!this.infoChannel) {
@@ -86434,7 +86434,7 @@ exports.default = default_1;
8643486434
/* 397 */
8643586435
/***/ (function(module) {
8643686436

86437-
module.exports = {"name":"coc.nvim","version":"0.0.72","description":"LSP based intellisense engine for neovim & vim8.","main":"./lib/index.js","bin":"./bin/server.js","scripts":{"clean":"rimraf lib build","lint":"tslint -c tslint.json -p .","build":"tsc -p tsconfig.json","watch":"tsc -p tsconfig.json --watch true --sourceMap","test":"node --trace-warnings node_modules/.bin/jest --runInBand --detectOpenHandles --forceExit","test-build":"node --trace-warnings node_modules/.bin/jest --runInBand --coverage --forceExit","prepare":"npm-run-all clean build"},"repository":{"type":"git","url":"git+https://github.com/neoclide/coc.nvim.git"},"keywords":["complete","neovim"],"author":"Qiming Zhao <chemzqm@gmail.com>","license":"MIT","bugs":{"url":"https://github.com/neoclide/coc.nvim/issues"},"homepage":"https://github.com/neoclide/coc.nvim#readme","jest":{"globals":{"__TEST__":true},"watchman":false,"clearMocks":true,"globalSetup":"./jest.js","testEnvironment":"node","moduleFileExtensions":["ts","tsx","json","js"],"transform":{"^.+\\.tsx?$":"ts-jest"},"testRegex":"src/__tests__/.*\\.(test|spec)\\.ts$","coverageDirectory":"./coverage/"},"devDependencies":{"@chemzqm/tslint-config":"^1.0.18","@types/debounce":"^3.0.0","@types/fb-watchman":"^2.0.0","@types/glob":"^7.1.1","@types/jest":"^24.0.15","@types/minimatch":"^3.0.3","@types/mkdirp":"^0.5.2","@types/node":"^12.6.2","@types/semver":"^6.0.1","@types/tar":"^4.0.3","@types/tunnel":"^0.0.1","@types/uuid":"^3.4.5","@types/which":"^1.3.1","colors":"^1.3.3","jest":"24.8.0","npm-run-all":"^4.1.5","ts-jest":"^24.0.2","tslint":"^5.18.0","typescript":"3.5.3","vscode-languageserver":"5.3.0-next.8"},"dependencies":{"@chemzqm/neovim":"5.1.7","bser":"^2.1.0","debounce":"^1.2.0","fast-diff":"^1.2.0","fb-watchman":"^2.0.0","follow-redirects":"^1.7.0","glob":"^7.1.4","isuri":"^2.0.3","jsonc-parser":"^2.1.0","log4js":"^4.5.0","minimatch":"^3.0.4","mkdirp":"^0.5.1","mv":"^2.1.1","rimraf":"^2.6.3","semver":"^6.2.0","tar":"^4.4.10","tslib":"^1.10.0","tunnel":"^0.0.6","uuid":"^3.3.2","vscode-languageserver-protocol":"3.15.0-next.6","vscode-languageserver-types":"3.15.0-next.2","vscode-uri":"^2.0.3","which":"^1.3.1"}};
86437+
module.exports = {"name":"coc.nvim","version":"0.0.73","description":"LSP based intellisense engine for neovim & vim8.","main":"./lib/index.js","bin":"./bin/server.js","scripts":{"clean":"rimraf lib build","lint":"tslint -c tslint.json -p .","build":"tsc -p tsconfig.json","watch":"tsc -p tsconfig.json --watch true --sourceMap","test":"node --trace-warnings node_modules/.bin/jest --runInBand --detectOpenHandles --forceExit","test-build":"node --trace-warnings node_modules/.bin/jest --runInBand --coverage --forceExit","prepare":"npm-run-all clean build"},"repository":{"type":"git","url":"git+https://github.com/neoclide/coc.nvim.git"},"keywords":["complete","neovim"],"author":"Qiming Zhao <chemzqm@gmail.com>","license":"MIT","bugs":{"url":"https://github.com/neoclide/coc.nvim/issues"},"homepage":"https://github.com/neoclide/coc.nvim#readme","jest":{"globals":{"__TEST__":true},"watchman":false,"clearMocks":true,"globalSetup":"./jest.js","testEnvironment":"node","moduleFileExtensions":["ts","tsx","json","js"],"transform":{"^.+\\.tsx?$":"ts-jest"},"testRegex":"src/__tests__/.*\\.(test|spec)\\.ts$","coverageDirectory":"./coverage/"},"devDependencies":{"@chemzqm/tslint-config":"^1.0.18","@types/debounce":"^3.0.0","@types/fb-watchman":"^2.0.0","@types/glob":"^7.1.1","@types/jest":"^24.0.15","@types/minimatch":"^3.0.3","@types/mkdirp":"^0.5.2","@types/node":"^12.6.2","@types/semver":"^6.0.1","@types/tar":"^4.0.3","@types/tunnel":"^0.0.1","@types/uuid":"^3.4.5","@types/which":"^1.3.1","colors":"^1.3.3","jest":"24.8.0","npm-run-all":"^4.1.5","ts-jest":"^24.0.2","tslint":"^5.18.0","typescript":"3.5.3","vscode-languageserver":"5.3.0-next.8"},"dependencies":{"@chemzqm/neovim":"5.1.7","bser":"^2.1.0","debounce":"^1.2.0","fast-diff":"^1.2.0","fb-watchman":"^2.0.0","follow-redirects":"^1.7.0","glob":"^7.1.4","isuri":"^2.0.3","jsonc-parser":"^2.1.0","log4js":"^4.5.0","minimatch":"^3.0.4","mkdirp":"^0.5.1","mv":"^2.1.1","rimraf":"^2.6.3","semver":"^6.2.0","tar":"^4.4.10","tslib":"^1.10.0","tunnel":"^0.0.6","uuid":"^3.3.2","vscode-languageserver-protocol":"3.15.0-next.6","vscode-languageserver-types":"3.15.0-next.2","vscode-uri":"^2.0.3","which":"^1.3.1"}};
8643886438

8643986439
/***/ })
8644086440
/******/ ]);

history.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# 2019-07-11 0.0.73
2+
3+
- fix(completion): fix map of number select
4+
- fix(languages): fix cursor position with snippet
5+
- fix(completion): fix cursor position with additionalTextEdits
6+
- fix(position): fix rangeOverlap check #961
7+
- fix(list): not change guicursor when it's empty
8+
- fix(list): fix filter not work on loading
9+
- fix(list): fix custom location list command not work
10+
- fix(util): highlight & render on vim8
11+
- fix(handler): fix getCommands
12+
- fix(handler): not check lastInsert on trigger signatureHelp
13+
- fix(handler): fix check of signature help trigger
14+
- fix(language-client): configuration for configured server, closes #930
15+
- fix(diagnostic): clear diagnostics on filetype change
16+
- feat(plugin): add download & fetch modules
17+
- feat(plugin): add highligher module
18+
- feat(refactor): add `<Plug>(coc-refactor)` for refactor window
19+
- feat(extension): use mv module for folder rename
20+
- feat(extension): support install taged extension
21+
- feat(extension): support custom extension root `g:coc_extension_root`
22+
- feat(handler): close signature float window on ')'
23+
- feat(list): support `g:coc_quickfix_open_command`
24+
- feat(list): add eval action
25+
- feat(list): add --tab list option
26+
- feat(list): use highligher module for showHelp
27+
- feat(terminal): add noa on window jump
28+
- feat(terminal): support vim8
29+
- feat(diagnostic): add diagnosticRelated support
30+
- feat(diagnostic): use text properties on vim8
31+
- feat(handler): improve signature float window
32+
133
# 2019-07-01
234

335
- feat(plugin): add CocStatusChange autocmd

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coc.nvim",
3-
"version": "0.0.72",
3+
"version": "0.0.73",
44
"description": "LSP based intellisense engine for neovim & vim8.",
55
"main": "./lib/index.js",
66
"bin": "./bin/server.js",

0 commit comments

Comments
 (0)