Libing Chen
Libing Chen
To be honest, I like theme in oh-my-zsh, and make your terminal not monotonous and useful. Because lots of theme in oh-my-zsh, could Kash support these themes by default with...
Could we add Picocli support for user defined commands, and auto completion will be ready if you use Picocli to write your command. https://picocli.info/quick-guide.html For example following command: ``` @Command(description...
You can use Emoji in your prompt. https://github.com/vdurmont/emoji-java
The time command is used to determine how long a given command takes to run, and it's very important to measure some performance.
I want to add some libraries for kash, for example, okhttp3, Klock, JSch etc, and I can write my functions with these libraries support. Cloud I put jars under ~/.kash/lib...
The Followings are default Imports of Kotlin, could the use add more global imports for kash. ``` kotlin.* kotlin.annotation.* kotlin.collections.* kotlin.comparisons.* (since 1.1) kotlin.io.* kotlin.ranges.* kotlin.sequences.* kotlin.text.* ``` For example...
I have a command with long time running. If coroutines introduced and it could be executed on background. ``` // this is your first suspending function suspend fun longTask() {...
importSpecifier should be url format. For local file, it should be `file:///user/user1/example/worker/function1.ts`, not `/user/user1/example/worker/function1.ts`. Tested on deno 1.14.1 ```typescript import { importw, release, worker, } from "https://deno.land/x/[email protected]/mod.ts"; // Import module...
Lots of developers use .env to process own configuration for script or app. Now I add `spring.config.import` in application.properties as following: ``` spring.config.import=optional:file:.env ``` and SpringBoot app throws the following...
JBang extracts snippet code by id and run it. How about `jbang --snippet demo App.java ` ? I can add run icon for snippet in IDEA and invoke JBang to...