{"id":20057671,"url":"https://github.com/todesking/qf_sbt.vim","last_synced_at":"2026-02-01T21:03:22.584Z","repository":{"id":19481418,"uuid":"22727058","full_name":"todesking/qf_sbt.vim","owner":"todesking","description":"Vim SBT integration","archived":false,"fork":false,"pushed_at":"2018-08-10T12:54:05.000Z","size":20,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-17T16:50:16.067Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vim script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/todesking.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-08-07T15:49:05.000Z","updated_at":"2018-08-10T12:54:07.000Z","dependencies_parsed_at":"2022-08-30T14:30:31.280Z","dependency_job_id":null,"html_url":"https://github.com/todesking/qf_sbt.vim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/todesking/qf_sbt.vim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/todesking%2Fqf_sbt.vim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/todesking%2Fqf_sbt.vim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/todesking%2Fqf_sbt.vim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/todesking%2Fqf_sbt.vim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/todesking","download_url":"https://codeload.github.com/todesking/qf_sbt.vim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/todesking%2Fqf_sbt.vim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28990702,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T20:57:35.821Z","status":"ssl_error","status_checked_at":"2026-02-01T20:57:29.580Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T12:59:52.332Z","updated_at":"2026-02-01T21:03:22.569Z","avatar_url":"https://github.com/todesking.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# qf_sbt.vim: SBT Vim integration\n\n## Current status\n\nWorks well, poorly documented.\n\n## Features\n\n* Async execution\n* Set error/warnings to quickfix\n* SBT processes are managed by vim\n* SBT plugin not needed.\n\n## Dependency\n\n* [current_project.vim](https://github.com/todesking/current_project.vim)\n* [VimProc](https://github.com/Shougo/vimproc.vim)\n\n## Usage\n\n### Commands\n\nAll operations are based on current buffer's project root.\n\n* `SbtStart`\n* `SbtStop`\n* `SbtClean`\n* `SbtRestart`\n* `SbtLog`\n* `SbtList`\n* `SbtSetQf`\n\n### Vimrc example\n\n```vim\nfunction! Vimrc_build_status() abort \" {{{\n\tlet proc = qf_sbt#get_proc()\n\tif empty(proc) \" sbt not started\n\t\treturn ''\n\telseif !qf_sbt#is_valid(proc) \" sbt started, but died unexpectedly.\n\t\treturn '(\u003e_\u003c)'\n\telse\n\t\t\" throttle for prevent too many updates\n\t\tif !exists('b:vimrc_build_status_last_updated')\n\t\t\tlet b:vimrc_build_status_last_updated = reltime()\n\t\tendif\n\t\tif str2float(reltimestr(reltime(b:vimrc_build_status_last_updated))) \u003e 0.5\n\t\t\tlet build_number = proc.last_build_number\n\t\t\tcall proc.update()\n\t\t\tif build_number \u003c proc.last_build_number\n\t\t\t\tcall proc.set_qf() \" Set build result to quickfix\n\t\t\tendif\n\t\t\tlet b:vimrc_build_status_last_updated = reltime()\n\t\tendif\n\t\treturn proc.build_status_string\n\tendif\nendfunction \" }}}\n\nset statusline='... %{Vimrc_build_status()} ...'\n```\n\n## Related plugin\n\n* [sbt-quickfix](https://github.com/dscleaver/sbt-quickfix)\n  * The plugin provides similar functions(Update quickfix from sbt compile result).\n  * It use sbt plugin to generate compile result, then update quickfix with `clientserver` feature.\n  * Need sbt plugin\n* [sbt-vim](https://github.com/ktvoelker/sbt-vim)\n  * No async feature\n  * Need python\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftodesking%2Fqf_sbt.vim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftodesking%2Fqf_sbt.vim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftodesking%2Fqf_sbt.vim/lists"}