This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Setup script for tcl-lsp.nvim development environment | |
| # Run this at the start of each chat session to prepare the environment | |
| set -e # Exit on error | |
| echo "==========================================" | |
| echo "TCL LSP Development Environment Setup" | |
| echo "==========================================" | |
| echo "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Running Lua unit tests with plenary... | |
| nvim --headless --noplugin -u tests/minimal_init.lua \ | |
| -c "lua require('plenary.test_harness').test_directory('tests/lua/', {minimal_init = 'tests/minimal_init.lua'})" \ | |
| -c "qa!" | |
| Real Neovim test environment initialized | |
| Starting...Scheduling: tests/lua/config_spec.lua | |
| Scheduling: tests/lua/init_spec.lua | |
| Scheduling: tests/lua/features/completion_spec.lua | |
| Scheduling: tests/lua/features/formatting_spec.lua | |
| Scheduling: tests/lua/features/folding_spec.lua |