dzp

Results 22 issues of dzp

Is it possible to apply readline to [tview](https://github.com/rivo/tview) or [tcell](https://github.com/gdamore/tcell)? For example, abstracting Terminal into an interface instead of relying on real Terminal device. I wrote a tview application and...

When the code in the trigger executes some code that may affect the cursor position (e.g. a simple #split). The easiest way to get around this is to use `#delay...

I found a trivial bug, if I use `#split` in `#action`, I find that the line of text that causes the trigger will appear on the input line, which often...

This problem exists in both master and beta. This can be easily observed with these two commands. ``` ./tt++ -G -e '#session nwa ateraan.com 4002' ``` ``` ./tt++ -G -e...

If a long piece of code (e.g. more than 1000 lines) is running without a base function, the result will be incorrect, but it will be difficult for the user...

``` #math foo {922337203685477580 * 98 / ( 100 - 101 )} Arithmetic exception (core dumped) ``` This problem exists in both master and beta versions.

thanks ``` Set up Cygwin Chocolatey v2.2.2 Installing the following packages: chocolatey By installing, you accept licenses for the packages. Invalid credentials specified. Please provide credentials for: https://community.chocolatey.org/api/v2/ User name:...

检查目录树中符合条件的文件,其编码是否都符合预期,这样可以确认转换来源和转换目标目前的实际状况。

有些文件可能因为某些原因并不需要转换,比如: * 尺寸太大的文件 * 不属于可转换的文件 * 其它原因(请补充) 因此希望能够在转换列表中排除掉某些文件或目录,比如可以增加 `--exclude 'pattern'` 参数。 通过这种方式可以增强选择转换列表的功能。

目前的 `--pattern` 参数只能使用一次,并且不支持 `*.{foo,bar}` 语法,仅支持 `*.[och]` 语法,因此无法同时转换多种不同类型的文件名。 另外,关于 `*.[och]` 语法也并没有在文档中提到,因此用户不清楚可以这么用。 综上,建议增加一次性选择多种文件类型的方法。