Skip to content

Instantly share code, notes, and snippets.

@life00
life00 / highlights.scm
Last active March 6, 2025 22:44
Markdown syntax concealing with treesitter queries in neovim
;; extends
; set! is used to conceal the node with a single character string
; offset! is used to offset the concealed selection in the node
; headings
([
(atx_h1_marker)
(atx_h2_marker)
(atx_h3_marker)
(atx_h4_marker)
@henry0312
henry0312 / controller
Created February 15, 2014 10:47
Inserting multiple rows on FuelPHP
public function action_index()
{
Model_Test::test(); exit;
}