From d48cc1d37f22c6352750bba080ce539a6a768f8b Mon Sep 17 00:00:00 2001 From: jessy836 Date: Thu, 16 Oct 2025 23:58:15 +0200 Subject: [PATCH 1/2] =?UTF-8?q?feat(python-mode):=20add=20=E2=80=9Cpd?= =?UTF-8?q?=E2=80=9D=20snippet=20for=20pandas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python-mode/pd | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 python-mode/pd diff --git a/python-mode/pd b/python-mode/pd new file mode 100644 index 0000000..8f4c303 --- /dev/null +++ b/python-mode/pd @@ -0,0 +1,8 @@ +# -*- mode: snippet -*- +# name: pd +# key: pd +# uuid: pd +# group: general +# -- +import pandas as pd +$0 \ No newline at end of file From a9ec1f840d12cf8172b7b2c041a34d048f49d024 Mon Sep 17 00:00:00 2001 From: jessy836 Date: Fri, 17 Oct 2025 23:26:44 +0200 Subject: [PATCH 2/2] feat(python-mode): add plt snippet for matplotlib MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a new Emacs snippet in python-mode that expands “plt” to “import matplotlib.pyplot as plt.” --- python-mode/plt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 python-mode/plt diff --git a/python-mode/plt b/python-mode/plt new file mode 100644 index 0000000..18a9c44 --- /dev/null +++ b/python-mode/plt @@ -0,0 +1,8 @@ +# -*- mode: snippet -*- +# name: plt +# key: plt +# uuid: plt +# group: general +# -- +import matplotlib.pyplot as plt +$0 \ No newline at end of file