Optional boolean that determines whether the query is inserted raw (without URL encoding) into the URL.
> ```yaml
> shortcut: "!gh"
> url: https://github.com/{QUERY}
> raw-query: false
>
> shortcut: "!ghr"
> url: https://github.com/{QUERY}
> raw-query: true
>```
Typing
```
!gh glanceapp/glance
```
would result in
```
https://github.com/glanceapp%2Fglance
```
whereas
```
!ghr glanceapp/glance
```
would result in
```
https://github.com/glanceapp/glance
```
### Group
Group multiple widgets into one using tabs. Widgets are defined using a `widgets` property exactly as you would on a page column. The only limitation is that you cannot place a group widget or a split column widget within a group widget.