Arkadiusz Drabczyk
Arkadiusz Drabczyk
@seagle0128 I also get `LSP :: pyright.organizeimports action not available` and `(lsp--send-execute-command "pyright.organizeimports" [])` does nothing for me. Have you figured out how to use it?
pyright.organizeimports command has be invoked like that: `(lsp-send-execute-command "pyright.organizeimports" ["file:///home/ja/python/test.py"])` (the file:// parameter is obligatory). I checked that `this._generateSortedImportText(sortedStatements)` in pyright/packages/pyright-internal/src/languageService/importSorter.ts contains a properly sorted list of import statements but...
I can do as they do here https://github.com/rtyler/jdp/blob/main/data/valid/generated-parallel-wrapped-by-declarative/Jenkinsfile: script { def jobs = Jenkins.instance.getAllItems() jobs.each { j -> def scmsrc = [] if (j instanceof org.jenkinsci.plugins.workflow.job.WorkflowJob) { scmsrc = j.getSCMs()...
It could be simplified, complete Jenkinsfile could look like this: ``` def determineRepoSlug() { def a = Jenkins.instance.getItem("${env.JOB_NAME}".tokenize("/")[0]) return a.SCMSources[0].getRepoOwner() + "/" + a.SCMSources[0].getRepository() } pipeline { agent { docker...
I use Bitbucket server, not cloud but I created a token with write permissions and enabled hooks in the configuration and new PRs and new commits in existing PRs are...
Just want to say that of course you can do it yourself: package main import ( "log" "reflect" "github.com/go-playground/validator" ) type MySettings struct { Url string `validate:"required,url" err:"url it must...
This schema was generated by https://github.com/springfox/springfox which uses the `«` character https://github.com/search?q=repo%3Aspringfox%2Fspringfox%20%C2%AB&type=code
No, this code doesn't crash and prints ``` in foo in bar ``` > What is the point of your feature ? What feature? I found that bash-lsp doesn't jump...
It can also be reproduced on Linux: $ cat Dockerfile FROM alpine RUN echo mkdir C:\another\sample RUN echo mkdir C:\\another\\sample $ docker build -t backslash-test --no-cache . [+] Building 0.8s...
The sentence is: "Command-line flag syntax" section below. but the section name is: Command line flag syntax