Sewbacca

Results 33 issues of Sewbacca

I have a subfolder, in which scripts are without prefix (e.g. `main.lua`) and all other folders are reachable via package.path (though the debug console says it has mixed / and...

When I put breakpoints in a file with capitalization i can't put breakpoints in. e. g.: `main.lua` ```lua local foo = require "Foo" foo() ``` `Foo.lua` ```lua return function() return...

bug
needs test case

I can't reproduce this bug in another project. I'm using Love2D and wrap the update and draw calls arround a `lldebugger.call`, so that any breakpoints and whatever should get recognized....

bug
needs test case

It is an attempt to implement generic references inside strings. e.g. ```lua ---@generic T ---@param f T local function test(f) end ---@class Test f "Test" -- This is a reference...

I would like to use my in code documentation to generate a markdown document to create a README.md (e.g. for my [lfsampler](https://github.com/sewbacca/LFSampler/graphs/traffic)). Since LDoc didn't like my comments, it was...

enhancement

Given such a folder structure: ``` . └── module ├── init.lua └── submodule └── init.lua ``` Now in `module/init.lua` i would like to import submodule. Currently it only works if...

enhancement

I have a problem when concerning the [lpeg library](http://www.inf.puc-rio.br/~roberto/lpeg/). The [re module](http://www.inf.puc-rio.br/~roberto/lpeg/re.html) has a conditional `if` that defines re globally if and only if the version is Lua 5.1. However...

enhancement

## Output of `cutechess-cli --version` / `cutechess --version` ``` cutechess-cli 1.2.0 Using Qt version 5.11.1 Copyright (C) 2008-2020 Ilari Pihlajisto, Arto Jonsson and contributors This is free software; see the...

When I create a new Project, I can use the extension to create the `.vscode` directory, but I can't select it other than with current-file or last-selection. When I start...

I noticed a strange bug when using CRLF line endings. Whenever i wanted to add a definition, somehow an excess of newlines would appear, e.g.: ```cpp void Instance::function() { }...