Jupyterlab extension to add handling of Makefiles and syntax colouring support
Project description
jupyterlab_makefile_file_type_extension
A JupyterLab extension providing comprehensive Makefile support with syntax highlighting and custom file type recognition.
Features
Comprehensive Makefile editing support in JupyterLab with syntax highlighting that distinguishes targets, variables, conditionals, and shell constructs.
File recognition:
- Standard names:
Makefile,makefile,GNUmakefile - Extensions:
*.mk,*.mak,*.make - Custom red "M" icon in file browser
Highlighting coverage:
- Build targets and dependencies
- Variable references and shell constructs
- Conditional directives
- Special targets and silent commands
- Line continuations and quoted strings
Requirements
- JupyterLab >= 4.0.0
Install
To install the extension, execute:
pip install jupyterlab_makefile_file_type_extension
Configuration
IMPORTANT: Configure Tab Character Usage
Makefiles require tab characters for recipe command indentation. Recipe lines starting with spaces instead of tabs will cause Make execution to fail with "missing separator" errors. Configure JupyterLab to use tabs:
- Open JupyterLab Settings → Settings Editor
- Navigate to Text Editor section
- Set Indentation Unit to
Tab
Alternatively, add this to your JupyterLab Text Editor settings JSON:
{
"editorConfig": {
"indentUnit": "Tab"
}
}
Note: All recipe commands (lines that execute shell commands under targets) MUST start with a tab character. The syntax highlighter requires tab-indented recipe lines for proper highlighting - space-indented recipes will not be highlighted and will fail during Make execution.
Uninstall
To remove the extension, execute:
pip uninstall jupyterlab_makefile_file_type_extension
Contributing
Development install
Note: You will need NodeJS to build the extension package.
The jlpm command is JupyterLab's pinned version of
yarn that is installed with JupyterLab. You may use
yarn or npm in lieu of jlpm below.
# Clone the repo to your local environment
# Change directory to the jupyterlab_makefile_file_type_extension directory
# Set up a virtual environment and install package in development mode
python -m venv .venv
source .venv/bin/activate
pip install --editable "."
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
# Rebuild extension Typescript source after making changes
# IMPORTANT: Unlike the steps above which are performed only once, do this step
# every time you make a change.
jlpm build
You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.
# Watch the source directory in one terminal, automatically rebuilding when needed
jlpm watch
# Run JupyterLab in another terminal
jupyter lab
With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).
By default, the jlpm build command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:
jupyter lab build --minimize=False
Development uninstall
pip uninstall jupyterlab_makefile_file_type_extension
In development mode, you will also need to remove the symlink created by jupyter labextension develop
command. To find its location, you can run jupyter labextension list to figure out where the labextensions
folder is located. Then you can remove the symlink named jupyterlab_makefile_file_type_extension within that folder.
Testing the extension
Frontend tests
This extension is using Jest for JavaScript code testing.
To execute them, execute:
jlpm
jlpm test
Integration tests
This extension uses Playwright for the integration tests (aka user level tests). More precisely, the JupyterLab helper Galata is used to handle testing the extension in JupyterLab.
More information are provided within the ui-tests README.
Packaging the extension
See RELEASE
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jupyterlab_makefile_file_type_extension-1.0.83.tar.gz.
File metadata
- Download URL: jupyterlab_makefile_file_type_extension-1.0.83.tar.gz
- Upload date:
- Size: 560.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6a628d61947c9177cbeb8360f3cf6f16a4c1c6aee747b75949e7759ddcb7008
|
|
| MD5 |
b4afaa20d49053d20c1f1f8ad30d9969
|
|
| BLAKE2b-256 |
bdd5e2ee462850adaeed869f4e78262b942f95b9d854e4949e22de386a0159b2
|
File details
Details for the file jupyterlab_makefile_file_type_extension-1.0.83-py3-none-any.whl.
File metadata
- Download URL: jupyterlab_makefile_file_type_extension-1.0.83-py3-none-any.whl
- Upload date:
- Size: 18.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92cffc25e0ec066609f08e8a1abbc450a9f0464accb73379d0d8791d92676583
|
|
| MD5 |
38270a6e1be469c1d4e9c2aebd14c0ec
|
|
| BLAKE2b-256 |
16285d00dfef02fad55f837817eed466bd4bcccd5ec02f226f2e8a35686c3cdd
|