boop-gtk 1.2.0

A scriptable scratchpad for developers Port of @IvanMathy's Boop to GTK
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
	{
		"api":1,
		"name":"Trim Start",
		"description":"Trims leading whitespace.",
		"author":"Joshua Nozzi",
		"icon":"scissors",
		"tags":"trim,start,left,leading,beginning,whitespace,empty,space",
	}
**/

function main(state) {
  
  state.text = state.text.trimStart();
  
}