Skip to content

Newline character is not removed from the completion info popup menu … #1051

Newline character is not removed from the completion info popup menu …

Newline character is not removed from the completion info popup menu … #1051

Workflow file for this run

name: unit-tests
on: [push, pull_request]
jobs:
linux:
name: linux
runs-on: ubuntu-22.04
steps:
- name: Install packages
run: |
sudo apt update
# install clangd language server
sudo apt install -y clangd-15
# install nodejs
sudo apt install -y curl
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo bash -
sudo apt install -y nodejs
# install typescript language server
sudo npm install -g typescript-language-server typescript
# install golang language server
sudo apt install -y golang
sudo apt install -y gopls
- name: Setup Vim
uses: rhysd/action-setup-vim@v1
id: vim
with:
version: v9.0.0000
- name: Checkout LSP Code
uses: actions/checkout@v3
- name: Run Tests
run: |
uname -a
export VIMPRG=${{ steps.vim.outputs.executable }}
$VIMPRG --version
cd test
./run_tests.sh