v0.10.0 installs additional packages into ST3/Packages directory
See original GitHub issueAfter the (automatic) update to SublimeJedi 0.10.0 there are the following additional packages installed into Sublime Text 3\Packages
:
- markupsafe
- mdpopups
- pygments
- python-jinja2
- python-markdown
Is this necessary? Before, sublimeJedi (or Jedi itself) seemed to work fine without them.
Issue Analytics
- State:
- Created 6 years ago
- Comments:11 (7 by maintainers)
Top Results From Across the Web
Installing Packages - Python Packaging User Guide - Python.org
This section covers the basics of how to install Python packages. It's important to note that the term “package” in this context is...
Read more >Installation - Package Control
Click the Preferences > Browse Packages… menu; Browse up a folder and then into the Installed Packages/ folder; Download Package Control.sublime-package and ...
Read more >Install a Python package into a different directory using pip?
Use --upgrade to replace existing packages in <dir> with new versions. ... pip install --install-option="--install-purelib=/python/packages" package_name.
Read more >How to Install Packages in Sublime Text 3 - Comp Sci Station
Installing packages for Sublime Text is a practical must for new and even advanced developers. In this step by step tutorial, we learn...
Read more >install.packages function - RDocumentation
Download and install packages from CRAN-like repositories or from local files. ... Can be NULL to install from local files, directories or URLs:...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
What you see is the default style of a code view created by mdpopups.
You can modify all aspects of tooltips created with mdpopups by creating a Packages/User/mdpopups.css and place global or package specific rules into.
To increase the font-size of the highlighted code for jedi only, you’ll need to add the following rule.
Following rule would apply to all tooltips created by mdpopups.
Each package may use a wrapper-class when creating mdpopups to provide package specific styling rules. SublimeJEDI uses
.jedi
. GitGutter uses.git-gutter
.For further details about styling please refer to mdpopups’ documentation http://facelessuser.github.io/sublime-markdown-popups/styling. The package comes with a default.css as a cheatsheet for available rules.
@deathaxe I bet we should place this “how to” in to readme-file