ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### 安装php语法支持扩展 CocInstall coc-phpls CocInstall marketplace ### 搜索插件市场 :CocList marketplace ### 函数跳转配置 nmap <silent> gd <Plug>(coc-definition) nmap <silent> gy <Plug>(coc-type-definition) nmap <silent> gi <Plug>(coc-implementation) nmap <silent> gr <Plug>(coc-references) 回车补全 inoremap <silent><expr> <CR> coc#pum#visible() ? coc#pum#confirm() : "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>" ### coc.vim 的配置项 .config/nvim/coc-settings.json { // 保存的时候自动格式化 "coc.preferences.formatOnSaveFiletypes": [ "php", "javascript", "html" ], // 对齐 json中不能写注释 "phpfmt.enable_auto_align":true }