Inspired by: https://gist.github.com/protoEvangelion/4f9d8c3b2f8471e7037a985602cd8a19
Find your Slack's application directory.
- Windows:
%homepath%\AppData\Local\slack\ - Mac:
/Applications/Slack.app/Contents/ - Linux:
/usr/lib/slack/(Debian-based)
Inspired by: https://gist.github.com/protoEvangelion/4f9d8c3b2f8471e7037a985602cd8a19
Find your Slack's application directory.
%homepath%\AppData\Local\slack\/Applications/Slack.app/Contents//usr/lib/slack/ (Debian-based)To have home and end keys funciton on a Mac as they do on a PC:
Create the file ~/Library/KeyBindings/DefaultKeyBinding.dict
This file will likely not exist and you may also need to create the KeyBindings directory.
In the file, insert this code.
{
| /* ---------------------------------------------- */ | |
| /* Flex First */ | |
| /* ---------------------------------------------- */ | |
| #flex_first { | |
| margin: 0 auto; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } |
| import concurrent.futures | |
| import os | |
| import re | |
| import json | |
| import mimetypes | |
| # required libraries | |
| import magic | |
| import requests |
| local config = { | |
| -- Set colorscheme | |
| colorscheme = "duskfox", | |
| -- Default theme configuration | |
| default_theme = { | |
| diagnostics_style = "none", | |
| -- Modify the color table | |
| colors = { |
| const fs = require('fs') | |
| const baseDocPath = './src/documentation/views/ui-components/' // 'tag/api.vue' | |
| const basePath = './src/wave-ui/components/' | |
| /** @type Record<string, {splitDocs: boolean, docs: string | false, file?: string}> */ | |
| const components = { | |
| 'w-accordion': { splitDocs: false, docs: 'accordion' }, | |
| 'w-alert': { splitDocs: false, docs: 'alert' }, | |
| 'w-app': { splitDocs: false, docs: 'app' }, |