diff --git a/ALE.md b/ALE.md index 73a9939..bf677b1 100644 --- a/ALE.md +++ b/ALE.md @@ -7,8 +7,8 @@ To set init options for `ccls`, add to `~/.vimrc` or `~/.vim/vimrc` (example for ```viml let g:ale_cpp_ccls_init_options = { \ 'cache': { -\ 'directory': '/tmp/ccls/cache'), -\ }, +\ 'directory': '/tmp/ccls/cache' +\ } \ } ``` diff --git a/Project-Setup.md b/Project-Setup.md index dd93c83..b7d067f 100644 --- a/Project-Setup.md +++ b/Project-Setup.md @@ -160,7 +160,7 @@ _appended_ to the compiler flags for files found in `compile_commands.json`. This argument should be added only when parsing C (`%c`), C++ (`%cpp`), Objective-C (`%objective-c`), or Objective-C++ (`%objective-c++`) files. -### `%cu +### `%cu` This argument should be added only when parsing CUDA files. If you want an option to be added to both CUDA and regular C++ files, write `%cpp %cu -DA`.