question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

v0.10.0 installs additional packages into ST3/Packages directory

See original GitHub issue

After 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:closed
  • Created 6 years ago
  • Comments:11 (7 by maintainers)

github_iconTop GitHub Comments

1reaction
deathaxecommented, Aug 9, 2017

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.

.jedi .highlight {
    font-size: 1.1rem;
}

Following rule would apply to all tooltips created by mdpopups.

.mdpopups .highlight {
    font-size: 1.1rem;
}

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.

0reactions
srusskihcommented, Aug 9, 2017

@deathaxe I bet we should place this “how to” in to readme-file

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found