{"id":19009946,"url":"https://github.com/editorconfig/editorconfig-jedit","last_synced_at":"2025-10-04T22:42:01.296Z","repository":{"id":2243707,"uuid":"3198227","full_name":"editorconfig/editorconfig-jedit","owner":"editorconfig","description":"EditorConfig plugin for jEdit","archived":false,"fork":false,"pushed_at":"2025-04-21T07:25:25.000Z","size":88,"stargazers_count":18,"open_issues_count":0,"forks_count":7,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-04-22T22:53:01.711Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://editorconfig.org","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/editorconfig.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":"2012-01-17T09:48:31.000Z","updated_at":"2025-04-21T07:25:29.000Z","dependencies_parsed_at":"2022-09-10T00:31:11.208Z","dependency_job_id":null,"html_url":"https://github.com/editorconfig/editorconfig-jedit","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/editorconfig/editorconfig-jedit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/editorconfig%2Feditorconfig-jedit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/editorconfig%2Feditorconfig-jedit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/editorconfig%2Feditorconfig-jedit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/editorconfig%2Feditorconfig-jedit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/editorconfig","download_url":"https://codeload.github.com/editorconfig/editorconfig-jedit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/editorconfig%2Feditorconfig-jedit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278386120,"owners_count":25978109,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-08T19:09:21.916Z","updated_at":"2025-10-04T22:42:01.269Z","avatar_url":"https://github.com/editorconfig.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EditorConfig jEdit Plugin\n\n[![Build Status](https://secure.travis-ci.org/editorconfig/editorconfig-jedit.svg?branch=master)](http://travis-ci.org/editorconfig/editorconfig-jedit)\n\nThis is an [EditorConfig][] plugin for [jEdit][].\n\n## Installation\n\n### Install from jEdit Plugin Manager (Preferred)\n\n1.  Launch the jEdit plugin manager. It's in **Plugins** - **Plugin Manager...**.\n\n2.  Click on the **Install** tab, find **EditorConfig** in the plugin list.\n    Check it and click on the **Install** button.\n\nIf you have problem using the Plugin Manager, you can also download the binaries\nfrom [here](http://plugins.jedit.org/plugins/?EditorConfig).\n\n### Install from Source\n\n1.  Make sure that submodules are checked out and up-to-date:\n\n        git submodule update --recursive --init\n\n2.  Download [ant][] and install it.\n\n3.  In the EditorConfig jEdit Plugin project root directory, get the jEdit\n    build-support files:\n\n        svn co https://svn.code.sf.net/p/jedit/svn/build-support/trunk build-support\n\n4.  Copy `build.properties.in` to `build.properties`. Edit the\n    `build.properties` file and modify `jedit.install.dir` to the jEdit\n    installation directory in your system.\n\n5.  Switch to EditorConfig jEdit Plugin project root directory and run `ant`.\n\n6.  If succeeded, Plugin should be built in `build/jars/`. Copy\n    `build/jars/EditorConfigPlugin.jar` and `build/jars/editorconfig.jar` to your\n    jEdit plugin directory (this should be `~/.jedit/jars` on UNIX and\n    `${JEDIT_INATALLATION_DIRECTORY}/jars` on Windows).\n\n6.  If jEdit is running, restart jEdit.\n\nFor example, on Debian, the commands are like this:\n\n```Shell\n$ sudo apt-get install ant git\n$ git clone git://github.com/editorconfig/editorconfig-jedit.git\n$ git submodule update --init --recursive\n$ cd editorconfig-jedit\n$ svn co https://jedit.svn.sourceforge.net/svnroot/jedit/build-support/trunk build-support\n$ cp build.properties.in build.properties # Copy build properties and modify jedit.install.dir as needed\n$ ant\n$ cp ./build/jars/*.jar ~/.jedit/jars\n```\n\n## Supported properties\n\nThe EditorConfig jEdit plugin supports the following EditorConfig [properties][]:\n\n* indent_style\n* indent_size\n* tab_width\n* end_of_line\n* charset\n* root (only used by EditorConfig core)\n\nIn addition, this plugin also supports a specific property which is only valid for jEdit:\n\n* jedit_charset\n\nThe usage of this property is similar to `charset`, but the value is the\nencoding string defined by jEdit, and is case sensitive. If both `charset` and\n`jedit_charset` are present, only `charset` will be used.\n\n## Bugs and Feature Requests\n\nFeel free to submit bugs, feature requests, and other issues to the main\n[EditorConfig issue tracker](https://github.com/editorconfig/editorconfig/issues).\n\n\n[ant]: http://ant.apache.org\n[EditorConfig]: https://editorconfig.org\n[EditorConfig core]: https://github.com/editorconfig/editorconfig-core\n[jEdit]: http://www.jedit.org\n[properties]: https://editorconfig.org/#supported-properties\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feditorconfig%2Feditorconfig-jedit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feditorconfig%2Feditorconfig-jedit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feditorconfig%2Feditorconfig-jedit/lists"}