Sort directories before files

Sort directories before files in repository tree view

Автор
anhkhoakz
Инсталации дневно
0
Инсталации общо
0
Рейтинг
0 0 0
Версия
1.0.3
Създаден
09.04.2025
Обновен
15.05.2025
Размер
970 Байта
Лиценз
GPL-3.0
Работи на

Sort Directories Before Files

A user script designed to sort directories before files in the repository tree view on git.sr.ht.

Features

  • Sorting Logic: Prioritizes directories over files in the tree list display.
  • Compatibility: Specifically designed for git.sr.ht's tree view.

Usage

Once installed, the script will automatically sort directories before files whenever you're viewing the tree on git.sr.ht.

Code Overview

The script uses the following logic to sort the tree list:

  1. Identify Tree List:

    const tree_list = document.querySelector(".tree-list");
    
  2. Classify Nodes:

    • Iterates over elements with class .name to categorize them into directories (trees) and files (blobs).
  3. Sorting Mechanism:

    • Uses the indices of trees and blobs to sort the children of tree_list with directories prioritized.
  4. Reordering:

    • Re-appends sorted children to tree_list.

License

This script is released under the GPL-3.0 License.

长期地址
遇到问题?请前往 GitHub 提 Issues。