Hacker News new | ask | show | jobs
by zamalek 513 days ago
What I really want to see merged is the tokens in shell commands. dotnet is my day job, and the boilerplate (its luckily just namespace nowadays) gets repetitive and typo-prone. If I could just (approximately) `dotnet new class -o $cwd`...

Instead we have something like 3 closed PRs for this.

2 comments

Can't you just:

    <C-z>
    dotnet new class -o $PWD
    fg
PWD is does hot refer to the directory that file I am working on is in.