Add new std::env::user_home_dir
API returning Option<PathBuf>
.
This API is a replacement for the deprecated std::env::home_dir
which
provides a platform agnostic method for identifying the user's home directory
[ | |
{ "keys": ["ctrl+q"], "command": "exit" }, | |
{ "keys": ["ctrl+shift+n"], "command": "new_window" }, | |
{ "keys": ["ctrl+shift+w"], "command": "close_window" }, | |
{ "keys": ["open"], "command": "prompt_open_file" }, | |
{ "keys": ["ctrl+o"], "command": "prompt_open_file" }, | |
{ "keys": ["ctrl+shift+t"], "command": "reopen_last_file", "args": {"source": "window"} }, | |
{ "keys": ["alt+o"], "command": "switch_file", "args": {"extensions": ["cpp", "cxx", "cc", "c", "hpp", "hxx", "hh", "h", "ipp", "inl", "m", "mm"]} }, | |
{ "keys": ["alt+shift+o"], "command": "switch_file", "args": {"extensions": ["cpp", "cxx", "cc", "c", "hpp", "hxx", "hh", "h", "ipp", "inl", "m", "mm"], "side_by_side": true} }, |
/* | |
On OS X, basic text manipulations (left, right, command+left, etc) make use of the system key bindings, | |
and don't need to be repeated here. Anything listed here will take precedence, however. | |
*/ | |
[ | |
{ "keys": ["super+shift+n"], "command": "new_window" }, | |
{ "keys": ["super+shift+w"], "command": "close_window" }, | |
{ "keys": ["super+alt+shift+n"], "command": "new_os_tab" }, | |
{ "keys": ["ctrl+alt+tab"], "command": "next_os_tab" }, | |
{ "keys": ["ctrl+alt+shift+tab"], "command": "prev_os_tab" }, |
# Simple `pdxinfo` file for Playdate game development. | |
# Place inside your `source` directory next to your main.lua | |
name=Reverse Game | |
author=Author Name | |
description=This is the best game ever | |
bundleID=com.example.reverse | |
version=0.1-beta3 | |
buildNumber=123 | |
# These are relative to the `source` directory | |
imagePath=images/menu |
Why?
"Trailing whitespace is indeed commit noise."
Just drop this in one of your settings files:
I hereby claim:
To claim this, I am signing this object:
{% set version = "2016.3.3" %} | |
{% set pkg_version = '2016.3.3+ds-1' %} | |
salt_repo: | |
pkgrepo.managed: | |
- humanname: SaltStack Repo | |
- name: {{ "deb http://repo.saltstack.com/apt/ubuntu/%s/amd64/archive/%s %s main" % | |
(grains['osrelease'], version, grains['oscodename']) }} | |
- file: /etc/apt/sources.list.d/saltstack.list | |
- keyid: 754A1A7AE731F165D5E6D4BD0E08A149DE57BFBE # SaltStack Packaging Team |
# Place this config block inside the http scope of your nginx config. | |
# Replace with your DNS server. (e.g. VPC 10.12.0.0/16 -> 10.12.0.2) | |
resolver 8.8.8.8 valid=60s ipv6=off; | |
server { | |
listen 9201; | |
ssl on; | |
server_name whatever.domain.org; | |
ssl_certificate /etc/nginx/ssl/whatever.domain.org.crt; |
#!/usr/bin/env bash | |
set -u | |
# Downloads Oracle JDK tarball and makes fancy debs out of it. | |
# Output is full of warnings, but the packages work. ;) | |
# Example URL='http://download.oracle.com/otn-pub/java/jdk/8u45-b14/jdk-8u45-linux-x64.tar.gz' | |
MAJOR=8 | |
MINOR=45 | |
BUILD=14 |