Hugo Wang

Results 27 comments of Hugo Wang

Though not perfect, I'm using this way to solve the problem: 1. Organize all md files under one root dir, e.g. `/home/mitnk/docs/` 2. Always run a http server (using python...

Duplicated with #18 and see my comment in it as a solution.

I can reproduce this issue on Mac. Haven't dig into it.

This is a `PopenThread` related issue too. Mark `cat` with unthreadable can solve this issue. Details: When a progress try to access STDIN/STDOUT, it should have the controlling terminal, on...

In current xonsh, `cat` (the bare `$ car` cmd) is not directly forked, xonsh fork it within a separated thread. see `PopenThread` class for details is you want to.

A `__xonsh_commands_cache__.threadable_predictors['cat'] = lambda args: False` is a temporary solution if you need `$ cat` (or other commands that needs to enter alternative mode) to work. We hope xonsh can...

cat a file has no issues.

@laerus yes, we could, but it was not so convenient to think like this at a first try. I think we should follow the behavior of IPython - I didn't...

I think so. I found this issue from a real use case. Read a 10k rows file and write out to a new one with a different format. It only...

I think not printing when with multiple line command as default is safe enough. This is a try in IPython: ``` In [1]: 1 + 1 Out[1]: 2 In [2]:...