Leo

Results 8 comments of Leo

To figure out how the codes running, I run the following command in terminal no.1: ``` nim c --debugger:native src/moe.nim gdbserver :12345 src/moe ``` Then in terminal no.2, run: ```...

Thanks for explanations, @fox0430 After reading the codes, seems that adding `if settings["Standard"].contains("map"):` in `proc parseSettingsFile*` can be the entrance of `map` configuration. But I didn't find this function called...

Hi @fox0430 When I run `nimble test --verbose` on my laptop, the following errors raised: ``` [Suite] Editor: Send to clipboad xclip: -r: No such file or directory /home/leo/Documents/temp/moe/tests/teditor.nim(90, 21):...

According to [xclip 0.13 man page](https://manpages.debian.org/testing/xclip/xclip.1.en.html), `-r` means "when the last character of the selection is a newline character, remove it". However, there isn't `-r` option in version 0.12, which...

@Falldog Yes, mylib.pye is in add_cols.pyz, which is just a plain zip file: ``` $ unzip -l add_cols.pyz Archive: add_cols.pyz Length Date Time Name --------- ---------- ----- ---- 352 01-21-2019...

@iheng webpack.config.js中`proxy`部分修改如下: ``` proxy: { "/api/**": { target: "http://localhost:3030/", pathRewrite: { "^/api": ""} } } ``` 运行`npm run dev`后自动打开浏览器地址 *http://localhost:8080/* ,能够显示登录页面,但输入用户名密码(都是*dba*)后无法登录,登录按钮部分出现如下输出: ``` { "url": "/api/login", "ok": false, "status": 504, "statusText":...

@iheng the same error after changing 3030 to 3000

I face the same problem: ``` "runHaskellCode": [ { "command": "workbench.action.terminal.sendSequence", "args": { "text": ":{" } }, "workbench.action.terminal.runSelectedText", { "command": "workbench.action.terminal.sendSequence", "args": { "text": ":}" } } ] ``` The...